-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Add support for the ElectriQ iQ-wifiMOODL RGBW LED controller #7947
Conversation
Thanks for sharing. This should be disabled as default in order to not increase flash usage for all users. If any user need this, he/she can self compile. |
tasmota/language/bg-BG.h
Outdated
@@ -663,6 +663,7 @@ | |||
#define D_SENSOR_CC1101_GDO0 "CC1101 GDO0" | |||
#define D_SENSOR_CC1101_GDO2 "CC1101 GDO2" | |||
#define D_SENSOR_HRXL_RX "HRXL Rx" | |||
#define D_SENSOR_ELECTRIQ_MOODL "ElectriQ MOODL Tx" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Text too long. See remark in file:
// tasmota_template.h - keep them as short as possible to be able to fit them in GUI drop down box
Just drop ElectriQ and keep MOODL Tx
in all language files
BUILDS.md
Outdated
@@ -53,6 +53,7 @@ | |||
| USE_SM16716 | - | - | x | x | x | - | x | | |||
| USE_SM2135 | - | - | x | x | x | - | x | | |||
| USE_SONOFF_L1 | - | - | x | x | x | - | x | | |||
| USE_ELECTRIQ_MOODL | - | - | x | x | x | - | x | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Disable all by default as it is a niche product
Pls fix the above issues before merge. BTW I love the tiny code addition for a new feature. |
Thx. Considering the tine code footprint (0k3) I'll enable it by default anyway. |
Add support for ElectriQ iQ-wifiMOODL RGBW light by ianbyte (#7947)
@ianbyte got a template for that lamp? |
To be honest any template will do as long as some GPIO is configured as MOODL Tx. But for completeness this should do:
|
i hoped the gpio doesn't randomly change on that lamp :D |
Description:
This PR adds support for the ElectriQ iQ-wifiMOODL RGBW LED controller:
https://www.electriq.co.uk/p/iq-wifimoodl/electriq-dimmable-colour-changing-led-smart-mood-lamp-alexa-and-google-home-compatible
This lamp uses the TYWE3S module to transmit via UART to an unmarked MCU which drives 8 MOSFETs.
The MCU does not transmit; it only receives commands from the TYWE3S.
The MCU appears to use a modified/undocumented version of the TuyaMCU protocol.
Checklist: