V
Size: a a a
V
V
TK
СT
СT
V
D
V
V
V
СT
D
TK
TK
void loop()
{
currentState=digitalRead(9);
if(currentState==1 && previosState==0)
{
i++;
showDigit(1+i);
}
previosState=currentState;
}
DM
V
TK
void loop()
{
currentState=digitalRead(9);
if(currentState==1 && previosState==0)
{
i++;
showDigit(1+i);
}
previosState=currentState;
}
DM
СT
DM