Hello I just configured a TTN Device but I´m getting this error in the log:
ERROR (MainThread) [homeassistant.components.thethingsnetwork.sensor] Error while accessing: https://isatten_b1.data.thethingsnetwork.org/api/v2/query/hola_mundo
That device is a TTGO Lora 32 sending the string “Hello world!” every 10 minutes. I can see it in TTN Console and in swagger:
[
{
"device_id": "hola_mundo",
"message": "Hello, world!",
"raw": "SGVsbG8sIHdvcmxkIQ==",
"time": "2020-06-18T09:56:08.771706913Z"
}
]
This is the configuration.yaml:
# TTN
thethingsnetwork:
app_id: isatten_b1
access_key: ttn-account-v2.***myacceskey***
and this one is my sensor.yaml:
# TTN
- platform: thethingsnetwork
device_id: hola_mundo
values:
message: none
time: timestamp
Do you know why I am getting this error?
Kind regards.