You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Moppy.ino there is double mention of pin no. 13:
void setup(){
pinMode(13, OUTPUT);// Pin 13 has an LED connected on most Arduino boards
[pinMode(2-12, OUTPUT)]
pinMode(13, OUTPUT); // Direction 6
But you could just do:
void setup(){
//Remove(d) first pinMode(13, OUTPUT)
[pinMode(2-12, OUTPUT)]
pinMode(13, OUTPUT); // Direction 6 and most Arduino boards have an LED connected to this pin
The text was updated successfully, but these errors were encountered:
Good catch; it's been resolved in the upcoming Moppy 2.0 code. I'll leave this open in case I come back to cleanup this code, but it'll probably just be superseded once I get 2.0 into a usable state.
In Moppy.ino there is double mention of pin no. 13:
But you could just do:
The text was updated successfully, but these errors were encountered: