connornishijima / AlertMe

Arduino library for sending email and SMS from nothing but the ESP8266!
GNU General Public License v3.0
67 stars 17 forks source link

example doesn't seem to use the config pin properly #3

Open zirkeltraining opened 6 years ago

zirkeltraining commented 6 years ago

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){

?