C++ (Qt)switch(a){ case 0: comand[13] = 0x00; case 1: comand[13] = 0x01; case 2: comand[13] = 0x02; case 3: comand[13] = 0x03; case 4: comand[13] = 0x04; case 5: comand[13] = 0x05; case 6: comand[13] = 0x06; case 7: comand[13] = 0x07; case 8: comand[13] = 0x08; case 9: comand[13] = 0x09; case A: comand[13] = 0x0A; case B: comand[13] = 0x0B; case C: comand[13] = 0x0C; case D: comand[13] = 0x0D; case E: comand[13] = 0x0E; case F: comand[13] = 0x0F;}//swich
C++ (Qt)while(!asleep()) sheep++;
if (0 <= a && a <= 0xF) command[13] = (char)a;
QChar::QChar (int code)