article about moving to v7

blakadder 2019-11-06 21:09:35 +01:00
parent afe42f459c
commit 2e74c00493
2 changed files with 23 additions and 2 deletions

21
Moving-to-v7.md Normal file

@ -0,0 +1,21 @@
With version 7 of Tasmota all the references to _sonoff_ are replaced with **tasmota**.
First thing that you need to change is the default grouptopic.
Change grouptopic to new one for all old devices with:
```haskell
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)
Change OTAUrl to new one for all devices (after changing grouptopic with the above command):
```haskell
Publish cmnd/tasmotas/OTAUrl http://thehackbox.org/tasmota/tasmota.bin
```
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"]}
```

@ -20,10 +20,10 @@ WebUI is themable starting with »6.6.0 using [`WebColor`](commands#webcolor) co
To apply the theme copy the entire code block and send it in console or via MQTT.
#### Dark (default theme)
<img src="https://user-images.githubusercontent.com/33861984/68164146-60f12000-ff5c-11e9-97a7-b603aaa8c9f6.png" width="100" align=right>
<img src="https://user-images.githubusercontent.com/5904370/68332933-e6e5a600-00d7-11ea-885d-50395f7239a1.png" width="100" align=right>
```
WebColor {"WebColor":["#eeeeee","#181818","#4f4f4f","#000000","#dddddd","#008000","#222222","#ff0000","#008000","#ffffff","#1fa3ec","#0e70a4","#d43535","#931f1f","#47c266","#5aaf6f","#ffffff","#999999","#eeeeee"]}
WebColor {"WebColor":["#eaeaea","#252525","#4f4f4f","#000000","#dddddd","#65c115","#1f1f1f","#ff5661","#008000","#faffff","#1fa3ec","#0e70a4","#d43535","#931f1f","#47c266","#5aaf6f","#faffff","#999999","#eaeaea"]}
```
<br>