Hey all!
Is it possible to use multiple instances of the same plugin? I’m planning on expanding my project, and I’m going to use 3 Unipi Neuron devices… they all have different IP’s but I’m not sure if the unipi-evok plugin can handle this?
Right now I have the following lines in my config
"plugins": [
{
"plugin": "cron"
},
{
"plugin": "mobile-frontend"
},
{
"plugin": "unipi-evok",
"url": "http://10.10.1.5"
},
{
"plugin": "shell-execute"
},
{
"plugin": "kodi",
"customOpenCommands": []
},
{
"plugin": "mqtt",
"active": true,
"brokers": [
{
"brokerId": "default",
"host": "localhost",
"username": "user",
"password": "hunter2"
}
]
},
{
"latitude": 58.226169,
"longitude": 1.834548,
"plugin": "sunrise",
"active": true
}
],
Do I just expand my config with extra IP’s like this?
{
"plugin": "unipi-evok",
"url": "http://10.10.1.5"
},
{
"plugin": "unipi-evok",
"url": "http://10.10.1.6"
},
{
"plugin": "unipi-evok",
"url": "http://10.10.1.7"
},
Has anyone tested this before?