Updated Moving to v7 (markdown)

blakadder 2019-11-13 12:59:25 +01:00
parent ab788fe004
commit 28c6b65aca
1 changed files with 21 additions and 8 deletions

@ -1,21 +1,34 @@
With version 7 of Tasmota all the references to _sonoff_ are replaced with **tasmota**.
V7 brought a **HUGE** change!
The official name is now ***Tasmota*** instead of Sonoff-Tasmota and this introduces a few, possibly breaking, changes that need to be addressed:
First thing that you need to change is the default grouptopic.
1. References to _sonoff_ in the UI, code and wiki are replaced with **tasmota**
2. Default device topic is now `tasmota` and friendly name is _Tasmota_.
3. All binaries are now named `tasmota-xxxx.bin` and default OTA url is `http://thehackbox.org/tasmota/tasmota.bin`
Change grouptopic to new one for all old devices with:
```haskell
Upgrading from older versions will not be painless. It is ***highly recommended*** to backup your configuration first, upgrade, erase flash and reset the device to firmware defaults and finally use decode-config tool to restore the configuration.
### GroupTopic
**All sweeping changes across all devices are done through publishing to the group topic so this is required to do first for all other changes to be effective! If you have custom group topics defined you're on your own**
Default GroupTopic changed from `sonoffs` to `tasmotas`. Every new device will have `tasmotas` as the default GroupTopic but previously flashed ones will remain on `sonoffs`.
To change GroupTopic of all old devices to the new one:
```
Publish cmnd/sonoffs/GroupTopic tasmotas
```
Default OTAUrl is now `http://thehackbox.org/tasmota/tasmota.bin` (if you have other builds in your OTAUrl just change sonoff to tasmota)
### OTAUrl
Default OTAUrl is now `http://thehackbox.org/tasmota/tasmota.bin`. If you're using other precompiled builds in your OTAUrl just change `sonoff` to `tasmota`.
Change OTAUrl to new one for all devices (after changing grouptopic with the above command):
To change OTAUrl for all devices (after changing GroupTopic with the above command):
```haskell
```
Publish cmnd/tasmotas/OTAUrl http://thehackbox.org/tasmota/tasmota.bin
```
### Dark Theme
New default theme is Dark, if you want all your devices on the dark side use:
```
WebColor {"WebColor":["#eaeaea","#252525","#4f4f4f","#000000","#dddddd","#65c115","#1f1f1f","#ff5661","#008000","#faffff","#1fa3ec","#0e70a4","#d43535","#931f1f","#47c266","#5aaf6f","#faffff","#999999","#eaeaea"]}
Publish cmnd/tasmotas/WebColor 0
```