Snap4Arduino
Snap4Arduino copied to clipboard
Translatable project generates multiple unneeded "int i = 0;"
The following
generates
int i = 0; int i = 0;
void setup() { for (byte i = 0; i < TOTAL_PINS; i++) { servoPinMap[i] = 255; } // Auto-generated by Snap4Arduino. Do not remove.
for (int i = 0; i < 10; i++) {
} for (int i = 0; i < 10; i++) {
} }
which doesn't compile due to the unneeded "int i = 0;" statements