mirror of https://github.com/arendst/Tasmota.git
Add RF to MagicHome / LC10
Add RF Receiver control to module MagicHome to be used on Arilux LC10 (#3792)
This commit is contained in:
parent
f05a471e48
commit
8f95f07b51
|
@ -1,5 +1,6 @@
|
||||||
/* 6.2.1.9 20180928
|
/* 6.2.1.9 20180928
|
||||||
* Add Apparent Power and Reactive Power to Energy Monitoring devices (#251)
|
* Add Apparent Power and Reactive Power to Energy Monitoring devices (#251)
|
||||||
|
* Add RF Receiver control to module MagicHome to be used on Arilux LC10 (#3792)
|
||||||
*
|
*
|
||||||
* 6.2.1.8 20180926
|
* 6.2.1.8 20180926
|
||||||
* Change status JSON message providing more switch and retain information
|
* Change status JSON message providing more switch and retain information
|
||||||
|
|
|
@ -855,6 +855,7 @@ const mytmplt kModules[MAXMODULE] PROGMEM = {
|
||||||
0, 0, 0, 0, 0, 0, // Flash connection
|
0, 0, 0, 0, 0, 0, // Flash connection
|
||||||
0, 0, 0, 0, 0
|
0, 0, 0, 0, 0
|
||||||
},
|
},
|
||||||
|
/*
|
||||||
{ "MagicHome", // Magic Home (aka Flux-light) (ESP8266)
|
{ "MagicHome", // Magic Home (aka Flux-light) (ESP8266)
|
||||||
// https://www.aliexpress.com/item/Magic-Home-Mini-RGB-RGBW-Wifi-Controller-For-Led-Strip-Panel-light-Timing-Function-16million-colors/32686853650.html
|
// https://www.aliexpress.com/item/Magic-Home-Mini-RGB-RGBW-Wifi-Controller-For-Led-Strip-Panel-light-Timing-Function-16million-colors/32686853650.html
|
||||||
0,
|
0,
|
||||||
|
@ -869,6 +870,22 @@ const mytmplt kModules[MAXMODULE] PROGMEM = {
|
||||||
GPIO_PWM1, // GPIO14 RGB LED Red
|
GPIO_PWM1, // GPIO14 RGB LED Red
|
||||||
0, 0, 0
|
0, 0, 0
|
||||||
},
|
},
|
||||||
|
*/
|
||||||
|
{ "MagicHome", // Magic Home (aka Flux-light) (ESP8266) and Arilux LC10 (ESP8285)
|
||||||
|
// https://www.aliexpress.com/item/Magic-Home-Mini-RGB-RGBW-Wifi-Controller-For-Led-Strip-Panel-light-Timing-Function-16million-colors/32686853650.html
|
||||||
|
0,
|
||||||
|
GPIO_USER, // GPIO01 Serial RXD and Optional sensor
|
||||||
|
GPIO_LED1_INV, // GPIO02 Blue onboard LED
|
||||||
|
GPIO_USER, // GPIO03 Serial TXD and Optional sensor
|
||||||
|
GPIO_ARIRFRCV, // GPIO04 IR or RF receiver (optional)
|
||||||
|
GPIO_PWM2, // GPIO05 RGB LED Green
|
||||||
|
0, 0, 0, 0, 0, 0, // Flash connection
|
||||||
|
GPIO_PWM3, // GPIO12 RGB LED Blue
|
||||||
|
GPIO_USER, // GPIO13 RGBW LED White (optional - set to PWM4 for Cold White or Warm White as used on Arilux LC10)
|
||||||
|
GPIO_PWM1, // GPIO14 RGB LED Red
|
||||||
|
GPIO_LED2_INV, // GPIO15 RF receiver control
|
||||||
|
0, 0
|
||||||
|
},
|
||||||
{ "Luani HVIO", // ESP8266_HVIO
|
{ "Luani HVIO", // ESP8266_HVIO
|
||||||
// https://luani.de/projekte/esp8266-hvio/
|
// https://luani.de/projekte/esp8266-hvio/
|
||||||
0, // GPIO00 Flash jumper
|
0, // GPIO00 Flash jumper
|
||||||
|
|
Loading…
Reference in New Issue