Ejemplo n.º 1
0
    private void Act()
    {
        client.SetBit(0, 11);
        Thread.Sleep(1000);
        Debug.Log("11 down");

        client.SetBit(0, 21);
        Thread.Sleep(1000);
        Debug.Log("21 down");


        client.ResetBit(0, 11);
        Thread.Sleep(1000);
        Debug.Log("11 up");

        client.ResetBit(0, 21);
        Thread.Sleep(1000);
        Debug.Log("21 up");
    }