From 525d5e97a948cd17aa60c50d34e60f4665337565 Mon Sep 17 00:00:00 2001 From: joBr99 <29555657+joBr99@users.noreply.github.com> Date: Sun, 18 Dec 2022 01:07:00 +0100 Subject: [PATCH] Change default to slower 115200 1.2 flashing for now --- tasmota/autoexec.be | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tasmota/autoexec.be b/tasmota/autoexec.be index 0312675e..1cd8855f 100644 --- a/tasmota/autoexec.be +++ b/tasmota/autoexec.be @@ -361,8 +361,10 @@ tasmota.add_cmd('UpdateDriverVersion', update_berry_driver) def flash_nextion(cmd, idx, payload, payload_json) def task() - nextion.flash_proto_version = 1 - nextion.flash_proto_baud = 921600 + #nextion.flash_proto_version = 1 + #nextion.flash_proto_baud = 921600 + nextion.flash_proto_version = 1 + nextion.flash_proto_baud = 115200 nextion.flash_nextion(payload) end tasmota.set_timer(0,task)