AlertMe
AlertMe copied to clipboard
example doesn't seem to use the config pin properly
in line 66 of the example, you have
if(config_pin == LOW){ // Short pin to GND for config AP
now shouldn't that be
if (DigitalRead(config_pin)==LOW){
?