diff --git a/tasmota/berry/animate_demo/leds_animation.be b/tasmota/berry/animate_demo/leds_animation.be index 68ea18495..cc76c80d2 100644 --- a/tasmota/berry/animate_demo/leds_animation.be +++ b/tasmota/berry/animate_demo/leds_animation.be @@ -24,43 +24,6 @@ class Leds_animation_UI "

") end - #- ---------------------------------------------------------------------- -# - #- Show page to migrate to factory layout + single OTA - #- ---------------------------------------------------------------------- -# - def show_migrate_to_factory(p) - # display ota partitions - import webserver - import string - - if !self.factory_migrate_eligible(p) return end - - webserver.content_send("
 Migrate to safeboot partition layout 

") - - webserver.content_send("

The `safeboot` layout allows for increased size
of firmware or file-system.

") - webserver.content_send("

Please see Safeboot layout documentation

") - webserver.content_send("

 

") - - webserver.content_send(string.format("

Step 1: %s

", self.display_step_state(self.test_step_1(p), "boot on `app1`"))) - webserver.content_send(string.format("

Step 2: %s

", self.display_step_state(self.test_step_2(p), "flash `safeboot` to `app0`"))) - webserver.content_send(string.format("

Step 3: %s

", self.display_step_state(self.test_step_3(p), "change partition map"))) - webserver.content_send(string.format("

Step 4: %s

", self.display_step_state(self.test_step_4(p), "flash final firmware"))) - - webserver.content_send("
") - var ota_url = tasmota.cmd("OtaUrl").find("OtaUrl", "") - webserver.content_send(string.format("
OTA Url

", - ota_url)) - - import persist - var safeboot_url = persist.find("safeboot_url", self.default_safeboot_URL()) - webserver.content_send(string.format("
SAFEBOOT Url (don't change)
", - safeboot_url)) - - webserver.content_send("

") - - webserver.content_send("

") - end - ####################################################################### # Show background colors #######################################################################