Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for SONOFF Smart Power Meter Switch | POW Elite #15856

Closed
5 of 11 tasks
nobodyman1 opened this issue Jun 23, 2022 · 515 comments
Closed
5 of 11 tasks

Support for SONOFF Smart Power Meter Switch | POW Elite #15856

nobodyman1 opened this issue Jun 23, 2022 · 515 comments
Assignees
Labels
enhancement Type - Enhancement that will be worked on fixed Result - The work on the issue has ended

Comments

@nobodyman1
Copy link

nobodyman1 commented Jun 23, 2022

PROBLEM DESCRIPTION

Is it possible to use Tasmota on the new SONOFF POW Elite?
I found some Pictures here.
It´s based on an ESP32 and the power measuring is done with a CSE7759B (same as used in SONOFF POW R2).
But what´s about the LCD driver?

REQUESTED INFORMATION

Make sure your have performed every step and checked the applicable boxes before submitting your issue. Thank you!

  • Read the Contributing Guide and Policy and the Code of Conduct
  • Searched the problem in issues
  • Searched the problem in discussions
  • Searched the problem in the docs
  • Searched the problem in the chat
  • Device used (e.g., Sonoff Basic): _____
  • Tasmota binary firmware version number used: _____
    • Pre-compiled
    • Self-compiled
  • Flashing tools used: _____
  • Provide the output of command: Backlog Template; Module; GPIO 255:

TO REPRODUCE

Steps to reproduce the behavior:

EXPECTED BEHAVIOUR

A clear and concise description of what you expected to happen.

SCREENSHOTS

If applicable, add screenshots to help explain your problem.

ADDITIONAL CONTEXT

Add any other context about the problem here.

(Please, remember to close the issue when the problem has been addressed)

@arendst arendst self-assigned this Jun 23, 2022
@arendst
Copy link
Owner

arendst commented Jun 23, 2022

I have one on order. Will see what's possible.

@arendst arendst added the enhancement Type - Enhancement that will be worked on label Jun 23, 2022
Repository owner deleted a comment from Erling55 Jun 29, 2022
Repository owner deleted a comment from sfromis Jun 29, 2022
Repository owner deleted a comment from Erling55 Jun 29, 2022
@dervomsee
Copy link

I received my POW elite yesterday and tried to run my own Platformio code on it.

The used hardware is the following:

  • SOC: ESP32-D0WD-V3
  • Flash: BL2111 (Unknown, esptool flash_id identifies it as a 4MB chip)
  • Power Measurement: CSE7759B
  • LCD Controller: TM1621
  • Relay: FANHAR W15l-1A2T-L2, single coil latching

As usually the button is connected to GPIO00 to enable the flash mode. It is possible to flash a basic program but it is not starting correctly. I based the first test program on the OTA example (https://github.com/espressif/arduino-esp32/blob/master/libraries/ArduinoOTA/examples/BasicOTA/BasicOTA.ino).
It connects to the WIFI, but does not start properly and it is not possible to run a OTA update.

In Platformio i used board = esp32dev as the base.
Does anyone has a idea, what stops the program running on the ESP?

@sfromis
Copy link
Contributor

sfromis commented Jul 1, 2022

Did you try just flashing the standard Tasmota build? If that works......

@dervomsee
Copy link

dervomsee commented Jul 1, 2022

Hmm, good Idea. I started with my own firmware to play with the IOs and the LCD.
I will try the default image later..

Update: Great, this works. Maybe my build environment is broken.
Now Tasmota runs on my POWR320D
ESP Chip Id 1124244 (ESP32-D0WD-V3 rev.3)
Flash Chip Id 0x16405E
Flash Size 4096 KB
Program Flash Size 4096 KB
Program Size 1397 KB
Free Program Space 1482 KB
Free Memory 159.0 KB (frag. 28%)

@arendst
Copy link
Owner

arendst commented Jul 2, 2022

GPIO00 = Button1
GPIO02 = Relay1 (320D - bi-stable - Off)
GPIO05 = LedLink_i
GPIO13 = Relay1 (316D)
GPIO14 = TM1621 DA
GPIO15 = Relay1 (320D - bi-stable - On)
GPIO16 = CSE7766 Rx
GPIO18 = Led_i1
GPIO25 = TM1621 CS
GPIO26 = TM1621 RD
GPIO27 = TM1621 WR

Also DO NOT CONNECT SERIAL WHILE AC IS CONNECTED. Just blew my Earth Leakage Circuit Breaker. No visible damage. Pfew. How could I forget...

image

Current template for POWR316D is:

{"NAME":"Sonoff POWR316D","GPIO":[32,0,0,0,0,576,0,0,0,224,0,0,3104,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"FLAG":0,"BASE":1}

@barbudor
Copy link
Contributor

barbudor commented Jul 2, 2022

Lcd driver datasheet
Titan Micro TM1621 Lcd driver.pdf
Chinese but seems understandable. Otherwise Google translate is our friend 😊

@sfromis
Copy link
Contributor

sfromis commented Jul 2, 2022

Some driver code found here: https://github.com/emsyscode/TM1621

/*
This code is not clean and also is not perfect, this is only 
a reference to extract ideas and adapte to your solution.
*/

@nobodyman1
Copy link
Author

Lcd driver datasheet Titan Micro TM1621 Lcd driver.pdf Chinese but seems understandable. Otherwise Google translate is our friend 😊

I found the HT1621 which looks very similar to me.

@Nuffic
Copy link

Nuffic commented Jul 3, 2022

TH Elite seems to have the same base as POW Elite (by the looks at least). Would be nice to get support for it as well. I have few of them here + DS18B20, THS01 sensors. I can share info if needed, willing to help any way I can.

@sfromis
Copy link
Contributor

sfromis commented Jul 3, 2022

Looks like support for both is in the works.

@dervomsee
Copy link

@arendst Are you sure with the 320D pins?
My bistable relay uses the following pins: on=GPIO2, off=GPIO4.
The LEDs and the CSE pins are the same.

My config is currently the following:
{"NAME":"Sonoff POWR320D","GPIO": 32,0,224,0,225,576,0,0,0,0,0,0,3104,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],"FLAG":0,"BASE":1}

Does the 316D not have a bistable relay?

@arendst
Copy link
Owner

arendst commented Jul 4, 2022

Not sure about gpio15. As you noticed it's gpio4 it might well be ok.

My 316D has no bistable relay and is controlled by gpio13.

In the meantime I managed to logic analyse the sonoff lcd init sequence and 5 second display update sequence (on the thr316d to stay away from AC voltage). Currently need to find out which bit controls which part of the lcd. Init sequence is clear.

The ht1621 docs are indeed equal to my google translated tm1621 docs.

IMG_20220704_100542417_HDR

@arendst
Copy link
Owner

arendst commented Jul 4, 2022

I have the TM1621 init code working resulting in displaying default state on the POW ;-)

- - - - C
- - - - %RH

Now I have to find out which bit is which element on the LCD screen. Then I have to make a reference between these bits and numbers 0-9. Takes some time.

UPDATE1: Which is bit is which element solved:
IMG_20220704_163039721

Now come up with some nice small tables referencing digit to element.

@Philippe12
Copy link

Hello,
I use for few time a THR316D

The IO that I configured are :

  • Button GPIO 0
  • Relay 1 GPIO 21
  • Relay 2 GPIO 4
  • Alim ON/OFF captor GPIO 27
  • Captor GPIO 25
  • LED power GPIO 16
  • LED connected GPIO15
  • LED auto GPIO13
  • TX GPIO 1
  • RX GPIO 3

@Nuffic
Copy link

Nuffic commented Jul 4, 2022

@Philippe12 big thanks, I've managed to get everything working with this config, but the temperature sensor. Have you managed to use the temperature sensor there?

arendst added a commit that referenced this issue Jul 4, 2022
Add initial Sonoff POWR3xxD display support (#15856)
@arendst
Copy link
Owner

arendst commented Jul 4, 2022

By adding define USE_DISPLAY_TM1621_SONOFF you should be able to see Sonoff POWR3xxD alternating Voltage/Current and TotalEnergy/Power on the LCD display.

Using these templates:

 * {"NAME":"Sonoff POWR316D","GPIO":[32,0,0,0,0,576,0,0,0,224,9280,0,3104,0,320,0,0,0,0,0,0,9184,9248,9216,0,0,0,0,0,0,0,0,0,0,0,0],"FLAG":0,"BASE":1}
 * {"NAME":"Sonoff POWR320D","GPIO":[32,0,224,0,225,576,0,0,0,0,9280,0,3104,0,320,0,0,0,0,0,0,9184,9248,9216,0,0,0,0,0,0,0,0,0,0,0,0],"FLAG":0,"BASE":1}

That's it for today (00:11)

@Philippe12
Copy link

@Nuffic THR sensor (Sonoff Si7021) is a dificulty, it use the same protocole one wire than DHT11 but not with the same timming.

You can find mi first modification at : Philippe12@0d9f674

I know all this modifications are dirty that it for test, but if can help you.

@BangerTech
Copy link

hey @Philippe12 thanks for your modification i´m testing it right now ;-) could you please post your template?
Thanks

@Philippe12
Copy link

@BangerTech

{"NAME":"THR316D","GPIO":[32,3200,0,3232,225,9280,0,0,0,8224,0,544,3872,9184,9216,0,0,224,0,9248,0,1248,0,3840,0,0,0,0,0,0,0,0,0,0,0,0],"FLAG":0,"BASE":1}

I add TM1621 pin

@Nuffic
Copy link

Nuffic commented Jul 5, 2022

@Philippe12 thanks for all the info. We even got the DS18b20 working with it.

@BangerTech
Copy link

so for now the THR320D shows no Temp/Hum on the Display (Tasmota Interface is correct) instead it shows Watt, kWH like the POW try to figure out what to change...

@arendst
Copy link
Owner

arendst commented Jul 6, 2022

Try latest dev.

@BangerTech
Copy link

BangerTech commented Jul 6, 2022

@arendst it does show some temps but some weird ones ;-) and the Tasmota Interface shows no Temp/Hum at all. See Pic.
so i think one of the temps on the display is correct it is the esp32 temp.
@Philippe12 build worked well with the status infos in the tasmota interface but nothing on the display
Screenshot 2022-07-06 094134
Screenshot 2022-07-06 094216

@arendst
Copy link
Owner

arendst commented Jul 6, 2022

This is expected. The SI7021 driver is not available on the ESP32 (yet). The @Philippe12 patched version is not stable either considering the DHT: Invalid reading logging messages.

The display driver selects the current global-temp for being displayed. As the SI7021 is invalid it displays the ESP32 temp. To remove the ESP32 from being fed to global-temp you can either remove the ESP32 temp with command SetSensor127 0 or use the recently released command GlobalTemp2 1 to select the first JSON temperature being the SI7021 one which in turn is invalid and therefor does not show as a temp on the LCD display.

Also when no valid humidity is read it won't show anything on the LCD. Using command GlobalHum2 1 would select the SI7021 humidity.

@capoccio1
Copy link

tasmota made a great firmware possible that didn't implement a web page to set the thermostat?

@capoccio1
Copy link

I found these commands but they are not accepted from the console
Screenshot 2024-07-10 180841

@capoccio1
Copy link

To set a thermostat perhaps you need to enter the MQTT parameters?
Screenshot 2024-07-10 192408

@pmknowles
Copy link

pmknowles commented Jul 10, 2024 via email

@capoccio1
Copy link

ok I understand it's not in the binary but is there a way to have this function?

I have to activate the relay when the temperature exceeds 30° and deactivate it when it is at 29.8°, what commands should I use?

@capoccio1
Copy link

this example is right for me, but I don't know where to insert these commands

Screenshot 2024-07-10 193141

@pmknowles
Copy link

pmknowles commented Jul 10, 2024 via email

@pmknowles
Copy link

pmknowles commented Jul 10, 2024 via email

@capoccio1
Copy link

capoccio1 commented Jul 10, 2024

the sensor I use is THS01, so the command will be:

Screenshot 2024-07-10 212832

tele-SI7021#temperature>30 do power1 1
tele-SI7021#temperature<29.8 do power1 0

Right?

@pmknowles
Copy link

pmknowles commented Jul 10, 2024 via email

@pmknowles
Copy link

pmknowles commented Jul 10, 2024 via email

@capoccio1
Copy link

yes you are right I wrote the temperature data just for an example and to understand the command to send.
Sorry but I don't know how to send MQTT commands, from webgui I have the console panel and in the settings I have an MQTT window:

Screenshot 2024-07-11 000303

Screenshot 2024-07-11 000356

Where should the command to be sent be inserted?

@capoccio1
Copy link

rule1 on tele-SI7021#temperature>30 do power1 1 endon on tele-SI7021#temperature<29 do power1 1 endon
rule1 1

I sent this command from the console, when the temperature exceeded 30° the relay tripped but not immediately after a delay of about 1 minute.
Now I try to make it go below 29° hoping that the relay goes back to rest

@capoccio1
Copy link

I sent this command from the console:

rule1 on tele-SI7021#temperature>30 do power1 1 endon on tele-SI7021#temperature<29 do power1 0 endon rule1 1

WAAAUU it works perfectly, then I noticed that with the remote function I have a notable delay in turning the relay on and off.
I sent the modified command like this:

rule1 on SI7021#temperature>30 do power1 1 endon on SI7021#temperature<29 do power1 0 endon rule1 1

now the relay trips quickly once the set temperatures have been reached.

Loving thanks to pmknowles for his precious help.

@capoccio1
Copy link

To put the icing on the cake all you need to do is memorize this command:

rule1 on SI7021#temperature>30 do power1 1 endon on SI7021#temperature<29 do power1 0 endon rule1 1

otherwise if I turn the device off when I turn it back on it loses the programming.

@pmknowles
Copy link

pmknowles commented Jul 11, 2024 via email

@drbios
Copy link

drbios commented Jul 27, 2024

Hello, I have connected the 20 amp bistable main relay of a THR320D to the 220V coil of a 25 amp contactor. Everything works fine but the following happens:

  1. THR320D working with bistable relay on and 220V contactor coil energized. (working perfectly)
  2. If the power is cut and the THR320D is turned off, it turns off and cuts the main relay and the contactor coil is de-energized as it should be.
  3. If the power comes back to the THR320D it makes a threat to turn on the main relay (the connected contactor trips) and then turns off (the PoweronState=0 option)
  4. Then everything works normally. The relay remains off as indicated with the PoweronState=0 option

This threat to turn on the main relay during boot-up causes the contactor to energize the coil and trip. I ruled out any type of malfunction, memory erased wiring, flashing, etc.

It could be that there is still a detail in the way of controlling the bistable relay of the THr320D? (pin19 and 22) at the beginning of the boot of firmware 14.1)

I hope this is clear.
Regards

@pmknowles
Copy link

pmknowles commented Jul 27, 2024 via email

@drbios
Copy link

drbios commented Jul 27, 2024

With it being a bistable relay it might be the GPIO scan at start up. Try SetOption63 1. Sent from Outlook for Androidhttps://aka.ms/AAb9ysg

________________________________ From: drbios @.> Sent: Saturday, July 27, 2024 2:55:35 AM To: arendst/Tasmota @.> Cc: pmknowles @.>; Mention @.> Subject: Re: [arendst/Tasmota] Support for SONOFF Smart Power Meter Switch | POW Elite (Issue #15856) Hello, I have connected the 30 amp bistable main relay of a THR320D to the 220V coil of a 25 amp contactor. Everything works fine but the following happens: 1. THR320D working with bistable relay on and 220V contactor coil energized. (working perfectly) 2. If the power is cut and the THR320D is turned off, it turns off and cuts the main relay and the contactor coil is de-energized as it should be. 3. If the power comes back to the THR320D it makes a threat to turn on the main relay (the connected contactor trips) and then turns off (the PoweronState=0 option) 4. Then everything works normally. The relay remains off as indicated with the PoweronState=0 option This threat to turn on the main relay during boot-up causes the contactor to energize the coil and trip. I ruled out any type of malfunction, memory erased wiring, flashing, etc. It could be that there is still a detail in the way of controlling the bistable relay of the THr320D? (pin19 and 22) at the beginning of the boot of firmware 14.1) I hope this is clear. Regards — Reply to this email directly, view it on GitHub<#15856 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AI5KPMZWCNXVVZJODU34SETZOL4ZPAVCNFSM5ZVP735KU5DIOJSWCZC7NNSXTN2JONZXKZKDN5WW2ZLOOQ5TEMRVGM3TANJTGY3A. You are receiving this because you were mentioned.Message ID: @.***>

326 / 5.000
Unfortunately it didn't fix the problem. setoption63 1 has the same behavior.
It's very strange what happens. One thing I notice is that the red and green LEDs light up for a thousandth of a second. It's like there's a current leak or a capacitor that doesn't fully discharge after the power is cut off.

@pmknowles
Copy link

pmknowles commented Jul 27, 2024 via email

@drbios
Copy link

drbios commented Jul 27, 2024

w

32 scans the GPIOs

Where?

@pmknowles
Copy link

pmknowles commented Jul 27, 2024 via email

@drbios
Copy link

drbios commented Jul 28, 2024

PowerOnState - Tasmotahttps://tasmota.github.io/docs/PowerOnState/#poweronstate-functionality explains what happens at start up.

________________________________ From: drbios @.> Sent: 27 July 2024 19:41 To: arendst/Tasmota @.> Cc: pmknowles @.>; Mention @.> Subject: Re: [arendst/Tasmota] Support for SONOFF Smart Power Meter Switch | POW Elite (Issue #15856) w 32 scans the GPIOs Where? — Reply to this email directly, view it on GitHub<#15856 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AI5KPM3W2NFPNGWH476QUX3ZOPSTZAVCNFSM5ZVP735KU5DIOJSWCZC7NNSXTN2JONZXKZKDN5WW2ZLOOQ5TEMRVGQZDENBTGE3A. You are receiving this because you were mentioned.Message ID: @.***>

thank you so much 👍

@drbios
Copy link

drbios commented Jul 30, 2024

There is definitely something weird in the Tasmota 14.1 boot that makes pin 22 or pin 19 of the THR320D pretend to turn on the bi-stable main relay.

@pmknowles
Copy link

pmknowles commented Jul 30, 2024 via email

@drbios
Copy link

drbios commented Jul 30, 2024

I would reflash with 13.4 to see if it resolves it. 14+ is using a different core. Sent from Outlook for Androidhttps://aka.ms/AAb9ysg

________________________________ From: drbios @.> Sent: Tuesday, July 30, 2024 1:12:40 AM To: arendst/Tasmota @.> Cc: pmknowles @.>; Mention @.> Subject: Re: [arendst/Tasmota] Support for SONOFF Smart Power Meter Switch | POW Elite (Issue #15856) There is definitely something weird in the Tasmota 14.1 boot that makes pin 22 or pin 19 of the THR320D pretend to turn on the bi-stable main relay. — Reply to this email directly, view it on GitHub<#15856 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AI5KPM62SJBV2L5I55J56SLZO3K7RAVCNFSM5ZVP735KU5DIOJSWCZC7NNSXTN2JONZXKZKDN5WW2ZLOOQ5TEMRVG4ZDENRYGAYQ. You are receiving this because you were mentioned.Message ID: @.***>

I have already tried from v12.x to v13.x all versions and they all do the same thing. It's very strange.

@pmknowles
Copy link

pmknowles commented Jul 30, 2024 via email

@drbios
Copy link

drbios commented Jul 30, 2024

Well according to the Template in Blakadder's site the relays should GPIO4 Relay_b 1 and GPIO 2 Relay_b 2 and nothing is connected to GPIO19 or 20. GPIO # Component GPIO00 Button 1 GPIO01 None GPIO02 Relay_b 2 GPIO03 None GPIO04 Relay_b 1 GPIO05 LedLinki GPIO09 None GPIO10 None GPIO12 None GPIO13 None GPIO14 TM1621 DAT GPIO15 None GPIO16 CSE7766 Rx GPIO17 None GPIO18 Led_i 1 GPIO19 None GPIO20 None GPIO21 None GPIO22 None GPIO23 None GPIO24 None GPIO25 TM1621 CS GPIO26 TM1621 RD GPIO27 TM1621 WR GPIO6 None GPIO7 None GPIO8 None GPIO11 None GPIO32 None GPIO33 None GPIO34 None GPIO35 None GPIO36 None GPIO37 None GPIO38 None GPIO39 None Have you set the GPIO correctly? You have hopped onto an Issue about a different device (rather than a discussion) which isn't helping.

________________________________ From: drbios @.> Sent: 30 July 2024 13:39 To: arendst/Tasmota @.> Cc: pmknowles @.>; Mention @.> Subject: Re: [arendst/Tasmota] Support for SONOFF Smart Power Meter Switch | POW Elite (Issue #15856) I would reflash with 13.4 to see if it resolves it. 14+ is using a different core. Sent from Outlook for Androidhttps://aka.ms/AAb9ysg …
________________________________ From: drbios @.> Sent: Tuesday, July 30, 2024 1:12:40 AM To: arendst/Tasmota @.> Cc: pmknowles @.>; Mention @.> Subject: Re: [arendst/Tasmota] Support for SONOFF Smart Power Meter Switch | POW Elite (Issue #15856<#15856>) There is definitely something weird in the Tasmota 14.1 boot that makes pin 22 or pin 19 of the THR320D pretend to turn on the bi-stable main relay. — Reply to this email directly, view it on GitHub<#15856 (comment)<#15856 (comment)>>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AI5KPM62SJBV2L5I55J56SLZO3K7RAVCNFSM5ZVP735KU5DIOJSWCZC7NNSXTN2JONZXKZKDN5WW2ZLOOQ5TEMRVG4ZDENRYGAYQ. You are receiving this because you were mentioned.Message ID: @.> I have already tried from v12.x to v13.x all versions and they all do the same thing. It's very strange. — Reply to this email directly, view it on GitHub<#15856 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AI5KPM3CBXXLIHDN5XCBX2LZO6CPNAVCNFSM5ZVP735KU5DIOJSWCZC7NNSXTN2JONZXKZKDN5WW2ZLOOQ5TEMRVHAZDKMRSGIYQ. You are receiving this because you were mentioned.Message ID: @.>

That is the template of the Pow Elite 20A, I have the THR320D, which is the cousin, the bi-stable relay is connected to pins 19 and 22

@drbios
Copy link

drbios commented Jul 31, 2024

Well according to the Template in Blakadder's site the relays should GPIO4 Relay_b 1 and GPIO 2 Relay_b 2 and nothing is connected to GPIO19 or 20. GPIO # Component GPIO00 Button 1 GPIO01 None GPIO02 Relay_b 2 GPIO03 None GPIO04 Relay_b 1 GPIO05 LedLinki GPIO09 None GPIO10 None GPIO12 None GPIO13 None GPIO14 TM1621 DAT GPIO15 None GPIO16 CSE7766 Rx GPIO17 None GPIO18 Led_i 1 GPIO19 None GPIO20 None GPIO21 None GPIO22 None GPIO23 None GPIO24 None GPIO25 TM1621 CS GPIO26 TM1621 RD GPIO27 TM1621 WR GPIO6 None GPIO7 None GPIO8 None GPIO11 None GPIO32 None GPIO33 None GPIO34 None GPIO35 None GPIO36 None GPIO37 None GPIO38 None GPIO39 None Have you set the GPIO correctly? You have hopped onto an Issue about a different device (rather than a discussion) which isn't helping.

________________________________ From: drbios @.> Sent: 30 July 2024 13:39 To: arendst/Tasmota @.> Cc: pmknowles @.>; Mention @.> Subject: Re: [arendst/Tasmota] Support for SONOFF Smart Power Meter Switch | POW Elite (Issue #15856) I would reflash with 13.4 to see if it resolves it. 14+ is using a different core. Sent from Outlook for Androidhttps://aka.ms/AAb9ysg …
________________________________ From: drbios @.> Sent: Tuesday, July 30, 2024 1:12:40 AM To: arendst/Tasmota @.> Cc: pmknowles @.>; Mention @.> Subject: Re: [arendst/Tasmota] Support for SONOFF Smart Power Meter Switch | POW Elite (Issue #15856<#15856>) There is definitely something weird in the Tasmota 14.1 boot that makes pin 22 or pin 19 of the THR320D pretend to turn on the bi-stable main relay. — Reply to this email directly, view it on GitHub<#15856 (comment)<#15856 (comment)>>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AI5KPM62SJBV2L5I55J56SLZO3K7RAVCNFSM5ZVP735KU5DIOJSWCZC7NNSXTN2JONZXKZKDN5WW2ZLOOQ5TEMRVG4ZDENRYGAYQ. You are receiving this because you were mentioned.Message ID: @.> I have already tried from v12.x to v13.x all versions and they all do the same thing. It's very strange. — Reply to this email directly, view it on GitHub<#15856 (comment)>, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AI5KPM3CBXXLIHDN5XCBX2LZO6CPNAVCNFSM5ZVP735KU5DIOJSWCZC7NNSXTN2JONZXKZKDN5WW2ZLOOQ5TEMRVHAZDKMRSGIYQ. You are receiving this because you were mentioned.Message ID: @.>

The problem is not the firmware, it is not a problem either, Theo answered me and explained. I appreciate your help
#21873

@capoccio1
Copy link

Hi, something strange is happening.
Since I updated all my devices to the new firmware 14.1.0 I can no longer detect them from Alexa, it always gives me "device not connected".
I tried in Alexa to delete all the dev
Screenshot 2024-08-03 161642
ices and search again but it doesn't find them.
Can you give me some suggestions?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Type - Enhancement that will be worked on fixed Result - The work on the issue has ended
Projects
None yet
Development

No branches or pull requests