+ 7
In Arduino Nano how to increment by only 1? If it increments till 4 or 5 with 1 increment
In Arduino Nano how to increment by only 1? If it increments till 4 or 5 with 1 increment
3 Respostas
+ 3
int a;a=+1
setup()
{
time = 1;
}
loop()
{
time++;
}
In this we increment
If it increments more we need to decrement. then we use -
+ 2
I hope it helps
+ 1
Same name, same time,good skills