Did something change in ESPEasy_mega-20180524?
I'm using a GeekCreit ESP-12F DevKit v2, and when I update from ESPEasy_mega-20180522 to ESPEasy_mega-20180524, suddenly the GPIO command doesn't work over HTTP any more.
using version ESPEasy_mega-20180522
Code: Select all
$ curl http://192.168.1.203/control?cmd=GPIO,2,1
{
"log": "GPIO 2 Set to 1",
"plugin": 1,
"pin": 2,
"mode": "output",
"state": 1
}
Code: Select all
$ curl http://192.168.1.203/control?cmd=GPIO,2,0
Unknown or restricted command!
$ curl http://192.168.1.203/control?cmd=GPIO,2,1
Unknown or restricted command!
Am I missing something?
Thanks!