Add configs for some banggood light switches:

- YK3_WIFI_SV2 (1 and 2 gang)
- YK3_WIFI_SV5 (3 gang)
This commit is contained in:
Pim van Pelt
2018-01-05 17:07:20 +01:00
parent 4679636fdc
commit 42524d15b2
3 changed files with 18 additions and 3 deletions

7
fs/1gang.json Normal file
View File

@ -0,0 +1,7 @@
{
"name": "1 Gang - YK3_WIFI_SV2",
"status_led": 0,
"channels": [
{ "led": 14, "relay": 4, "button": 3 }
]
}

8
fs/2gang.json Normal file
View File

@ -0,0 +1,8 @@
{
"name": "2 Gang - YK3_WIFI_SV2",
"status_led": 0,
"channels": [
{ "led": 16, "relay": 13, "button": 12 },
{ "led": 2, "relay": 15, "button": 5 }
]
}

View File

@ -1,9 +1,9 @@
{ {
"name": "3 Gang", "name": "3 Gang - YK3_WIFI_SV5",
"status_led": 0, "status_led": 0,
"channels": [ "channels": [
{ "led": 2, "relay": 15, "button": 5 }, { "led": 16, "relay": 13, "button": 12 },
{ "led": 14, "relay": 4, "button": 3 }, { "led": 14, "relay": 4, "button": 3 },
{ "led": 16, "relay": 13, "button": 12 } { "led": 2, "relay": 15, "button": 5 }
] ]
} }