-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
Description
After filling in the data #edit-device-page
rolling1
codeOn 100101111011010000010010,100111001110101110010010,100101100000111110100010,100100110011000000100010
codeOff 100110000010101000110010,100110101101010101000010,100100101001001001110010,100111101000000110110010
Value wrong:
{
"class": "HomeduinoRFSwitch",
"protocols": [
{
"name": "rolling1",
"options": {
"codeOn": "100101111011010000010010,100111001110101110010010,100101100000111110100010,100100110011000000100010",
"codeOff": "100110000010101000110010,100110101101010101000010,100100101001001001110010,100111101000000110110010"
}
}
],
"id": "quigg3-4",
"name": "quigg3-4"
}
Must be:
{
"class": "HomeduinoRFSwitch",
"protocols": [
{
"name": "rolling1",
"options": {
"codeOn": [
"100101111011010000010010",
"100111001110101110010010",
"100101100000111110100010",
"100100110011000000100010"
],
"codeOff": [
"100110000010101000110010",
"100110101101010101000010",
"100100101001001001110010",
"100111101000000110110010"
]
}
}
],
"id": "quigg3-4",
"name": "Camara noord"
}
Already thanks for the adjustment.
Wim.