mirror of https://github.com/arendst/Tasmota.git
Updated Upgrading (markdown)
parent
51e64c369b
commit
231440d517
10
Upgrading.md
10
Upgrading.md
|
@ -18,10 +18,14 @@ During this process Tasmota will download the new firmware from the url and inst
|
|||
After the upgrade is completed you can reconnect back to the Web UI and check the firmware version on the bottom of the page.
|
||||
|
||||
### Changing Ota Url
|
||||
If you wish to switch to a different [build](Builds) you have to change Ota Url to the desired binary from our [OTA Server](http://thehackbox.org/tasmota/release/).
|
||||
If you wish to switch to a different [build](Builds) you have to change OtaUrl to the desired binary from our [OTA Server](http://thehackbox.org/tasmota/release/).
|
||||
|
||||
It is also possible to create your own http OTA server (https is not supported) and perform upgrades from there.
|
||||
Guide to setting up a [**Python HTTP OTA server**](Python-HTTP-OTA-Server).
|
||||
It is possible to create your own simple http OTA server (https is not supported) using Python and perform upgrades from there.
|
||||
Install Python and from the folder where the binary (make sure sonoff-minimal.bin is locate there too) is located run :
|
||||
```
|
||||
python -m http.server 8000
|
||||
```
|
||||
Change your OtaUrl to http://ipoftheserver:8000/yourbinary.bin and start the upgrade process.
|
||||
|
||||
## Upgrade by file upload
|
||||
This process requires you to have a minimal build ([sonoff-minimal.bin](http://thehackbox.org/tasmota/release/sonoff-minimal.bin)) of the firmware since the upload process needs the space in flash memory to upload the new binary.
|
||||
|
|
Loading…
Reference in New Issue