I am having a similar issue to this thread, where I am attempting to use a node app running on my laptop to configure the Photon via SoftAP, however I am getting a response of {"r":-3}
when I attempt the configure-ap command.
It seems to have no issue with the public-key command, or scan-ap command. As documented in the example here I run rsa.setPublic()
on the retrieved public key and then rsa.encrypt()
on the entered password for the network.
However when I then send the configure-ap command with data postData = { "idx": 0, "ssid": SSID, "sec": SEC, "ch": CH, "pwd": rsa.encrypt(password) }
, I get the response {"r":-3}
and am not sure what this means?
The only user application on the Photon is the “Blink an LED” example, so I don’t believe there is any SYSTEM_THREAD enabled. I am running Photon firmware version 0.7.0.
Any suggestions for what I may be doing wrong?