byte a;
byte b;
byte c;
void setup() {
Serial.begin(115200);
a=200;
b=10;
c=a/b;
}
void loop() {
Serial.println(c);
delay(250);
}
byte a;
byte b;
byte c;
void setup() {
Serial.begin(115200);
a=200;
b=10;
c=a/b;
}
void loop() {
Serial.println(c);
delay(250);
}