Hi,
I’m struggling to figure out how to display and control multiple Orvibo switches. From looking at other examples I could find on the website, I’ve tried the following combinations, but each one either fails or just shows one item.
Would someone mind either pointing me to an example I can use as a base to build mine from, or perhaps highlighting what the correct syntax would be please? My aim is to then include them in a group.
Website example config first:
switch:
- platform: orvibo
discovery: false
switches:
- host: IP_ADDRESS
mac: MA:CA:DD:RE:SS:00
name: "My Socket"
My attempts:
switch:
- platform: orvibo
discovery: false
switches:
Socket1:
host: IP_ADDRESS
mac: MA:CA:DD:RE:SS:00
name: "Socket 1"
Socket2:
host: IP_ADDRESS
mac: MA:CA:DD:RE:SS:00
name: "Socket 2"
switch:
- platform: orvibo
discovery: false
switches:
- host: IP_ADDRESS
mac: MA:CA:DD:RE:SS:00
name: "Socket 1"
- host: IP_ADDRESS
mac: MA:CA:DD:RE:SS:00
name: "Socket 2"
switch:
- platform: orvibo
discovery: false
switch1:
- host: IP_ADDRESS
mac: MA:CA:DD:RE:SS:00
name: "Socket 1"
switch2:
- host: IP_ADDRESS
mac: MA:CA:DD:RE:SS:00
name: "Socket 2"
Thanks in advance.