Рет қаралды 27,281
Apologies for the video quality, just wanted to get this information out. I promise it will get better!
This is an update from my original video here,
• How to flash Tasmota o...
Took me a while to figure this out, so hoping this will help others. I didn't want to have to open up each light switch and change the jumper on each, so I was destined to figure out how to do it without. Below is what worked for me!
There are a few methods to get this done, but this on the one that worked consistently and each time for me.
Tools needed,
Sonoff DIY Tools
github.com/ite...
I used my router to create a new guest network with the following details,
Setup
wifi name (case sensitive) : sonoffDiy
Password : 20170618sn
--------------------------------------------------------------------------------------------------------------
Rest Client (many options, I used this)
chrome.google....
The only things you need to do in the REST client are as follows,
Use POST method
URL is the following {IP ADDRESS of mini}:8081/zeroconf/info
Body: {"data": {}}
when you run this, you should get something like the following,
{
"seq": 11,
"error": 0,
"data": {
"switch": "off",
"startup": "off",
"pulse": "off",
"pulseWidth": 500,
"ssid": "sonoffDiy",
"otaUnlock": false, -needs to be "true" to get the Sonoff flashing tool to work
"fwVersion": "3.6.0",
"deviceid": "1000b45d42",
"bssid": "77:34:23:f7:1f:6",
"signalStrength": -46
}
}
To change this to true, enter the following,
Using POST in rester again
{IP ADDRESS of mini}:8081/zeroconf/ota_unlock
After this, redo the above step with /zeroconf/info and make sure the otaUnlock is now set to true. If so, you should then have both your PC and SonoffMini on the sonoffDIY network. Run the Sonoff DIY tool and it should pop up there.
hope this helps!!!