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
EEStore::init(); // initialize and load Turnout and Sensor definitions stored in EEPROM
234
231
235
-
pinMode(CONFIG_PIN,INPUT); // if pin CONFIG_PIN is grounded upon start-up, print system configuration and halt
236
-
digitalWrite(CONFIG_PIN,HIGH);
237
-
if(!digitalRead(CONFIG_PIN))
232
+
pinMode(A5,INPUT); // if pin A5 is grounded upon start-up, print system configuration and halt
233
+
digitalWrite(A5,HIGH);
234
+
if(!digitalRead(A5))
238
235
showConfiguration();
239
236
240
237
Serial.print("<iDCC++ BASE STATION FOR ARDUINO "); // Print Status to Serial Line regardless of COMM_TYPE setting so use can open Serial Monitor and check configurtion
0 commit comments