Exemplo n.º 1
0
        public int controleModus = 0;                // 0 is uitgeschakelde modus, 1 is ingeschakeld (Om een woord goed te keuren)

        public SocketServer(int port, PinsInit pins) // Server biedt plaats voor 4 clients
        {
            Teams = new List <SocketClient>()
            {
                client1, client2, client3, client4
            };
            pin   = pins;
            _port = port;
            Star();
        }
Exemplo n.º 2
0
        public Spel(PinsInit pins, int AantalTeams) // Begin nieuw spel
        {
            TeamAantal = AantalTeams;
            pin        = pins;
            Speelwoord = woordenl[R.Next(woordenl.Count - 1)];
            pin.lcd.ClearDisplay();
            Task.Delay(5).Wait();
            pin.lcd.Write("Eerste woord: " + Speelwoord);

            teamnummer = R.Next(TeamAantal);
            Beginronde = teamnummer;
            Showwoord  = Speelwoord[0].ToString() + "....";
        }