thanks for the answers,
I have three diveces at hand (so i can test all three channels of the divces togehter).
But somehow pimatic does not seems to receive any signals.
My config:
{
"settings": {
"debug": true,
"logLevel": "debug",
"httpServer": {
"enabled": true,
"port": 80
},
"database": {
"deviceAttributeLogging": [
{
"deviceId": "*",
"attributeName": "*",
"type": "*",
"interval": "0",
"expire": "7d"
},
{
"deviceId": "*",
"attributeName": "*",
"type": "continuous",
"interval": "5min",
"expire": "7d"
},
{
"deviceId": "*",
"attributeName": "temperature",
"type": "number",
"expire": "1y"
},
{
"deviceId": "*",
"attributeName": "humidity",
"type": "number",
"expire": "1y"
}
],
"messageLogging": [
{
"level": "*",
"tags": [],
"expire": "7d"
},
{
"level": "debug",
"tags": [],
"expire": "0"
}
]
},
"authentication": {
"secret": "xxxxxxxxxx"
},
"httpsServer": {},
"cors": {},
"gui": {}
},
"plugins": [
{
"plugin": "cron"
},
{
"plugin": "mobile-frontend"
},
{
"plugin": "homeduino",
"driver": "gpio",
"driverOptions": {},
"receiverPin": 4,
"transmitterPin": 0,
"enableReceiving": true,
"debug": true,
"active": true
},
{
"plugin": "dht-sensors"
}
],
"devices": [
{
"id": "my-sensor",
"name": "dht22 example",
"class": "DHTSensor",
"type": 22,
"pin": 7,
"interval": 60000
}
],
"rules": [],
"pages": [
{
"id": "favourite",
"name": "Favourites",
"devices": [
{
"deviceId": "my-sensor"
}
]
}
],
"groups": [
{
"id": "test",
"name": "test",
"devices": [
"my-sensor"
],
"rules": [],
"variables": []
}
],
"users": [
{
"username": "admin",
"password": "xxxxxxxxxx",
"role": "admin"
}
],
"roles": [
{
"name": "admin",
"permissions": {
"pages": "write",
"rules": "write",
"variables": "write",
"messages": "write",
"events": "write",
"devices": "write",
"groups": "write",
"plugins": "write",
"updates": "write",
"database": "write",
"config": "write",
"controlDevices": true,
"restart": true
}
}
],
"variables": []
]
Even if I transmit signals with my radio remote control, pimatic displayed nothing in the GUI under “Log” - “Messages”.
Does someone recognize what I do wrong?