1

Topic: Restart Button

need to make a restart button

does any one did it before
Thanks

2

Re: Restart Button

For ESP

    if (RemoteXY.buttonReset != 0) {
      ESP.restart (); 
    }

3

Re: Restart Button

Can be shortened, but not sure if it will change the compiled code....

if (!RemoteXY.buttonReset) {
      ESP.restart (); 
    }
2B, or not 2B, that is the pencil ...