Hi folks,
I’m trying to get data from my Smappee device into HA. I used the following config entry:
smappee:
host: 10.101.50.85
host_password: !secret smappee_hostpassword
But, then no data is displayed. In the logs I see:
2018-08-05 09:45:14 INFO (MainThread) [homeassistant.setup] Setting up smappee
2018-08-05 09:45:14 WARNING (MainThread) [homeassistant.setup] Setup of config is taking over 10 seconds.
2018-08-05 09:45:14 WARNING (SyncWorker_11) [homeassistant.components.smappee] Smappee local component init skipped.
2018-08-05 09:45:16 INFO (MainThread) [homeassistant.setup] Setup of domain smappee took 2.4 seconds.
2018-08-05 09:45:16 INFO (MainThread) [homeassistant.core] Bus:Handling <Event component_loaded[L]: component=smappee>
By switching adding the cloud credentials in the config like this:
smappee:
host: 10.101.50.85
host_password: !secret smappee_hostpassword
client_id: Mitch2k
client_secret: !secret smappee_clientsecret
username: mitch2k
password: !secret smappee_userpassword
I do get data from Smappee now, but it’s to be in correct.
Reported in HA:
Total: 1819.8w
Solar: 0w
Reported in My Smappee:
Total: 910w
Solar: 1364w
The HA value doesn’t make any sense. Any idea why the data is not correct, and how I can poll smappee locally?
Thanks!