AirCon
AirCon copied to clipboard
Two line in service
since i have 2 clima how can i add a second line?
I have created a service for each AC. For example cameretta.service, soggiorno.service and matrimoniale.service. Each service has a different config (port number and JSON config file). I suggest you to modify the interval time for pub the topic within the hisense.py file, because if you restart HA you have to wait 10 minutes to see the status of your ACs. I set the interval at 30 secs.
@ck007max can you tell me exactly what should i change?
@ck007max I have 2 config file but I tryed to make two service but not work..please can you help me to make second service for second AC?
@deiger @ck007max I've been trying for hours, but it doesn't work, I created two files:
/lib/systemd/system/hisense_studio.service
/lib/systemd/system/hisense_stanzetta.service
with the two respective lines ./hisense.py --port 8888 --ip ...... I created the two links:
sudo ln -s /lib/systemd/system/hisense_studio.service /etc/systemd/system/multi-user.target.wants/hisense_studio.service
sudo ln -s /lib/systemd/system/hisense_stanzetta.service /etc/systemd/system/multi-user.target.wants/hisense_sanzetta.service
then i tryed to start service sudo systemctl start hisense_stanzetta.service and this work ... but wen I tryed to stard other Ac service: sudo systemctl start hisense_studio.service I have error service already run... How I can start both services?
Each service should run with its own port (that's the port for the HTTP server the AC connects with), besides the separate config and mqtt_topic .
@deiger Please can you explain in home page guide line correct step and configuration for make two service?
Sure, will add that.
Thank you sir fot your job!
I tryed to change port service for one of AC (8889) and also topic.... but not work see below:
@deiger Can you check why I can't send command to AC by mqtt topic? I see that the status of command payload change, but this command doesn't reach or doesn't understand from the ACs. If I try with curl command it works. I've noticed another problem, but maybe you've fixed. If I set the desidered temperature by HA, the command is with a decimal number (78.0) but the AC works with integer number.
The error you get is about a key_id mismatch. Are you sure you selected the correct A/C when you generated the config file?
@deiger With the last version of server script the fan status with AC in OFF state is correct, but the problem with send mqtt command remains. I can't change the status of my AC via HA. What about use Node-Red to send curl command to hisense server?
@deiger Please can you explain in home page guide line correct step and configuration for make two service?
I can try to explain step by step.
- Find the right IP address of your ACs
- Launch query_cli.py script for each AC: a) ./query_cli.py --user [email protected] --passwd my_pass --app oem-eu --config studio.json --device studio (### check the name of your AC on HiSense app, be careful of upper and lower case) b) ./query_cli.py --user [email protected] --passwd my_pass --app oem-eu --config stanzetta.json --device stanzetta
- Test the configuration file launching these commands: a) ./hisense.py --port 8888 --ip yourAC"studio"IP --config studio.json --mqtt_host yourmqttserver --mqtt_topic studio (eventually mqtt credential --mqtt_user user:passwd) b) ./hisense.py --port 8889 --ip yourAC"stanzetta"IP --config stanzetta.json --mqtt_host yourmqttserver --mqtt_topic stanzetta (eventually mqtt credential --mqtt_user user:passwd)
- Test with these commands if all is ok: a) curl -ik 'http://localhost:8888/hisense/status' a) curl -ik 'http://localhost:8889/hisense/status'
- If all is ok, open hisense.py change the value of 454 string (I put 30 for 30 seconds)
- Create a dedicated directory for the script files, and move the files to it. Pass the ownership to root with the following deiger instructions: sudo mkdir /usr/lib/hisense sudo mv hisense.py studio.json stanzetta.json /usr/lib/hisense sudo chown root:root /usr/lib/hisense/*
- Create a service configuration file for studio(as root), e.g. /lib/systemd/system/studio.service [Unit] Description=Hisense A/C server After=network.target
[Service] ExecStart=/usr/bin/python3.7 -u hisense.py --port 8888 --ip yourAC"studio"IP --config studio.json --mqtt_host localhost --mqtt_topic studio WorkingDirectory=/usr/lib/hisense StandardOutput=inherit StandardError=inherit Restart=always
[Install] WantedBy=multi-user.target 8) Create a service configuration file for stanzetta(as root), e.g. /lib/systemd/system/stanzetta.service [Unit] Description=Hisense A/C server After=network.target
[Service] ExecStart=/usr/bin/python3.7 -u hisense.py --port 8889 --ip yourAC"stanzetta"IP --config stanzetta.json --mqtt_host localhost --mqtt_topic stanzetta WorkingDirectory=/usr/lib/hisense StandardOutput=inherit StandardError=inherit Restart=always
[Install] WantedBy=multi-user.target 9) Link to them from /etc/systemd/system/ a) sudo ln -s /lib/systemd/system/studio.service /etc/systemd/system/multi-user.target.wants/studio.service b) sudo ln -s /lib/systemd/system/stanzetta.service /etc/systemd/system/multi-user.target.wants/stanzetta.service 10) sudo systemctl enable studio.service 11) sudo systemctl enable stanzetta.service 12) sudo systemctl start studio.service 13) sudo systemctl start stanzetta.service 14) Copy and paste the HA config by deiger changing the topic (for example for studio will be studio/t_work_mode/command and for stanzetta will be stanzetta/t_work_mode/command). Create a climate entity for each AC
@ck007max oh yes thank you now it very clear for me. only one think I have enable service: sudo systemctl enable stanzetta.service sudo systemctl start studio.service and not error found on my ubuntu after restart server the service it is not active. If I try to start manualy all work... strange!
Mmm...I haven't tried to restart my Ubuntu pc to test if all services start. Later I'll try and I'll tell you if all is ok. The command problem remains, I hope that deiger will resolve it 😄
I am also sure that the service starts in the way you indicated ... strange that at restart it does not work
@ck007max Re: decimal numbers, yes, it should already understand decimals. Can you try pasting the logs from running with --log_level=DEBUG? And let's move this discussion to #15. This issue is about controlling multiple ACs.
I've launched the script with --log_level=DEBUG, but where does it save the debug file? This is what I watch when I l've launched the script: 192.168.1.145 - - [31/May/2020 20:07:07] "POST /local_lan/key_exchange.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:07] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=0&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=1&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=2&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=3&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=4&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=5&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=6&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=7&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=8&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=9&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=10&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=11&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=12&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=13&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=14&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=15&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=16&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=17&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=18&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=19&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=20&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=21&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=22&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=23&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=24&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=25&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=26&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=27&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=28&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=29&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=30&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:08] "POST /local_lan/property/datapoint.json?cmd_id=31&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=32&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=33&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=34&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=35&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=36&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=37&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=38&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=39&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=40&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=41&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=42&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "POST /local_lan/property/datapoint.json?cmd_id=43&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:37] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:37] "POST /local_lan/property/datapoint.json?cmd_id=44&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:37] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=45&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=46&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=47&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=48&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=49&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=50&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=51&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=52&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=53&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=54&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=55&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=56&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=57&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=58&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=59&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=60&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=61&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=62&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=63&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=64&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=65&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=66&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=67&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=68&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=69&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=70&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=71&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=72&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=73&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "POST /local_lan/property/datapoint.json?cmd_id=74&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=75&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=76&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=77&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=78&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=79&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=80&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=81&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=82&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=83&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=84&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=85&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=86&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "POST /local_lan/property/datapoint.json?cmd_id=87&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:07:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:07] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:07] "POST /local_lan/property/datapoint.json?cmd_id=88&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:07] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=89&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=90&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=91&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=92&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=93&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=94&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=95&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=96&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=97&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=98&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=99&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=100&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=101&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=102&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=103&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=104&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=105&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=106&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=107&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=108&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=109&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=110&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=111&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=112&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=113&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=114&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=115&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=116&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=117&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=118&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=119&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:08] "POST /local_lan/property/datapoint.json?cmd_id=120&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "POST /local_lan/property/datapoint.json?cmd_id=121&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "POST /local_lan/property/datapoint.json?cmd_id=122&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "POST /local_lan/property/datapoint.json?cmd_id=123&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "POST /local_lan/property/datapoint.json?cmd_id=124&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "POST /local_lan/property/datapoint.json?cmd_id=125&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "POST /local_lan/property/datapoint.json?cmd_id=126&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "POST /local_lan/property/datapoint.json?cmd_id=127&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "POST /local_lan/property/datapoint.json?cmd_id=128&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "POST /local_lan/property/datapoint.json?cmd_id=129&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "POST /local_lan/property/datapoint.json?cmd_id=130&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "POST /local_lan/property/datapoint.json?cmd_id=131&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:38] "POST /local_lan/property/datapoint.json?cmd_id=132&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/key_exchange.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=134&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=135&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=136&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=137&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=138&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=139&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=140&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=141&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=142&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=143&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=144&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=145&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=146&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=147&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=148&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=149&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=150&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=151&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=152&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=153&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=154&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=155&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=156&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "POST /local_lan/property/datapoint.json?cmd_id=157&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:53] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=158&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=159&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=160&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=161&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=162&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=163&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=164&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=165&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=166&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=167&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=168&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=169&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=170&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=171&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=172&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=173&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=174&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "POST /local_lan/property/datapoint.json?cmd_id=175&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:08:54] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:02] "POST /local_lan/property/datapoint.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:06] "POST /local_lan/property/datapoint.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=176&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=177&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=178&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=179&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=180&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=181&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=182&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=183&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=184&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=185&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=186&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=187&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=188&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=189&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=190&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=191&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=192&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=193&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=194&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=195&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=196&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=197&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=198&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=199&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=200&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=201&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=202&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "POST /local_lan/property/datapoint.json?cmd_id=203&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:08] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=204&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=205&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=206&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=207&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=208&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=209&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=210&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=211&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=212&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=213&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=214&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=215&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=216&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=217&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=218&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "POST /local_lan/property/datapoint.json?cmd_id=219&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:09] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=220&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=221&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=222&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=223&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=224&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=225&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=226&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=227&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=228&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=229&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=230&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=231&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=232&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=233&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=234&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=235&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=236&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=237&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=238&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=239&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=240&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=241&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=242&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=243&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=244&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=245&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=246&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=247&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=248&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=249&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=250&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:38] "POST /local_lan/property/datapoint.json?cmd_id=251&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=252&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=253&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=254&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=255&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=256&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=257&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=258&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=259&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=260&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=261&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=262&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "POST /local_lan/property/datapoint.json?cmd_id=263&status=200 HTTP/1.1" 200 - 192.168.1.145 - - [31/May/2020 20:09:39] "GET /local_lan/commands.json HTTP/1.1" 200 -
Is this all the data from syslog? I'm not seeing any log messages. These are only the HTTP requests sent by the AC.
Yes, this is all data from syslog. How can I view the log messages?
Ah, it should be --log_level DEBUG
, replace the equal sign with a space.
I launch your script following your instructions. This is the result:
mattia@ubuntu-X45:/usr/lib/hisense$ sudo python3 ./hisense.py --port 8888 --ip 192.168.1.145 --config cameretta.json --mqtt_host 192.168.1.6 --mqtt_user mqtt:mqtt --mqtt_topic cameretta --log_level DEBUG
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/key_exchange.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=0&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=1&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=2&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=3&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=4&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=5&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=6&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=7&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=8&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=9&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=10&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=11&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=12&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=13&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=14&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=15&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=16&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=17&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=18&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=19&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=20&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=21&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=22&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=23&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=24&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=25&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=26&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=27&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=28&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=29&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=30&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "POST /local_lan/property/datapoint.json?cmd_id=31&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=32&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=33&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=34&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=35&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=36&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=37&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=38&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=39&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=40&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=41&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=42&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "POST /local_lan/property/datapoint.json?cmd_id=43&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:03:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=44&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=45&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=46&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=47&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=48&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=49&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=50&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=51&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=52&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=53&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=54&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=55&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=56&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=57&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=58&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=59&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=60&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=61&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=62&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=63&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=64&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=65&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=66&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=67&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=68&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=69&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=70&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=71&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=72&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=73&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=74&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=75&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=76&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "POST /local_lan/property/datapoint.json?cmd_id=77&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "POST /local_lan/property/datapoint.json?cmd_id=78&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "POST /local_lan/property/datapoint.json?cmd_id=79&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "POST /local_lan/property/datapoint.json?cmd_id=80&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "POST /local_lan/property/datapoint.json?cmd_id=81&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "POST /local_lan/property/datapoint.json?cmd_id=82&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "POST /local_lan/property/datapoint.json?cmd_id=83&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "POST /local_lan/property/datapoint.json?cmd_id=84&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "POST /local_lan/property/datapoint.json?cmd_id=85&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "POST /local_lan/property/datapoint.json?cmd_id=86&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "POST /local_lan/property/datapoint.json?cmd_id=87&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=88&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=89&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=90&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=91&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=92&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=93&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=94&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=95&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=96&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=97&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=98&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=99&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=100&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=101&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=102&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=103&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=104&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=105&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=106&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=107&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=108&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=109&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=110&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=111&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=112&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=113&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=114&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=115&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=116&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=117&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "POST /local_lan/property/datapoint.json?cmd_id=118&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=119&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=120&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=121&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=122&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=123&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=124&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=125&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=126&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=127&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=128&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=129&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=130&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "POST /local_lan/property/datapoint.json?cmd_id=131&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:04:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=132&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=133&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=134&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=135&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=136&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=137&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=138&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=139&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=140&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=141&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=142&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=143&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=144&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=145&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=146&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=147&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=148&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=149&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=150&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=151&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=152&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=153&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=154&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=155&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=156&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=157&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=158&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=159&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=160&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=161&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=162&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=163&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "POST /local_lan/property/datapoint.json?cmd_id=164&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:02] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:03] "POST /local_lan/property/datapoint.json?cmd_id=165&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:03] "POST /local_lan/property/datapoint.json?cmd_id=166&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:03] "POST /local_lan/property/datapoint.json?cmd_id=167&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:03] "POST /local_lan/property/datapoint.json?cmd_id=168&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:03] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:04] "POST /local_lan/property/datapoint.json?cmd_id=169&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:04] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:04] "POST /local_lan/property/datapoint.json?cmd_id=170&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:06] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:06] "POST /local_lan/property/datapoint.json?cmd_id=171&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:06] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:06] "POST /local_lan/property/datapoint.json?cmd_id=172&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:06] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:06] "POST /local_lan/property/datapoint.json?cmd_id=173&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:06] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:06] "POST /local_lan/property/datapoint.json?cmd_id=174&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:06] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:06] "POST /local_lan/property/datapoint.json?cmd_id=175&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:06] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=176&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=177&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=178&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=179&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=180&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=181&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=182&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=183&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=184&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=185&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=186&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=187&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=188&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=189&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=190&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=191&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=192&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=193&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=194&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=195&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=196&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=197&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=198&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=199&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=200&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=201&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=202&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=203&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:32] "POST /local_lan/property/datapoint.json?cmd_id=204&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=205&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=206&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=207&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=208&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=209&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=210&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=211&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=212&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=213&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=214&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=215&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=216&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=217&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=218&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "POST /local_lan/property/datapoint.json?cmd_id=219&status=200 HTTP/1.1" 200 -
192.168.1.145 - - [31/May/2020 21:05:33] "GET /local_lan/commands.json HTTP/1.1" 200 -
^C^CException ignored in: <module 'threading' from '/usr/lib/python3.8/threading.py'>
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 1388, in _shutdown
lock.acquire()
KeyboardInterrupt:
If you watch my mqtt explore, you can see that HA send the right mqtt command for power on and work mode:
I haven't found a debug log file, I'm sorry.
OK, it's guess work without logs, but I think I might have got it. Try downloading the up-to-date hisense.py.
OK, it's guess work without logs, but I think I might have got it. Try downloading the up-to-date hisense.py.
Ok, now the AC receive the command. All status are ok, but the temperature problem remain: E0531 22:20:12.786 hisense.py:688] Failed to parse value '69.80000000000001' for > Traceback (most recent call last): File "hisense.py", line 686, in mqtt_on_message queue_command(name, payload.upper()) File "hisense.py", line 353, in queue_command data_value = data_type(value) ValueError: invalid literal for int() with base 10: '69.80000000000001'
I have a question, why don't the services start after system reboot? I receive the following message when I check the status of the service: cameretta.service - Hisense A/C server Loaded: loaded (/lib/systemd/system/cameretta.service; enabled; vendor preset: enabled) Active: failed (Result: exit-code) since Sun 2020-05-31 22:35:11 CEST; 1min 19s ago Process: 1569 ExecStart=/usr/bin/python3 -u hisense.py --port 8888 --ip 192.168.1.145 --config cameretta.json --mqtt_host 192.168.1.6 --mqtt_user mqtt:mqtt --mqtt_topic cameretta (code=exited, status=1/FAILURE) Main PID: 1569 (code=exited, status=1/FAILURE)
mag 31 22:35:10 ubuntu-X45 systemd[1]: cameretta.service: Main process exited, code=exited, status=1/FAILURE mag 31 22:35:10 ubuntu-X45 systemd[1]: cameretta.service: Failed with result 'exit-code'. mag 31 22:35:11 ubuntu-X45 systemd[1]: cameretta.service: Scheduled restart job, restart counter is at 5. mag 31 22:35:11 ubuntu-X45 systemd[1]: Stopped Hisense A/C server. mag 31 22:35:11 ubuntu-X45 systemd[1]: cameretta.service: Start request repeated too quickly. mag 31 22:35:11 ubuntu-X45 systemd[1]: cameretta.service: Failed with result 'exit-code'. mag 31 22:35:11 ubuntu-X45 systemd[1]: Failed to start Hisense A/C server.
mattia@ubuntu-X45:~$ journalctl _PID=1569
-- Logs begin at Sun 2020-05-31 05:59:22 CEST, end at Sun 2020-05-31 22:50:18 CEST. --
mag 31 22:35:10 ubuntu-X45 python3[1569]: Traceback (most recent call last):
mag 31 22:35:10 ubuntu-X45 python3[1569]: File "hisense.py", line 770, in
It could be depended by the mqtt server that starts after the service?
I solved the service startup problem, @wifi75 change the original file config like this. You can edit with: sudo nano /lib/systemd/system/stanzetta.service [Unit] Description=Hisense A/C server After=docker.service
[Service] ExecStart=/usr/bin/python3 -u hisense.py --port 8890 --ip 192.168.1.115 --confi> WorkingDirectory=/usr/lib/hisense StandardOutput=inherit StandardError=inherit Restart=always RestartSec=3
[Install] WantedBy=multi-user.target When you finished press ctrl+x, save and exit Restart and all works
@ck007max it seems that HA doesn't honor the precision setting, and provides unrounded temperature post-conversion from Celsius (21ºC=69.8ºF). I changed the code to do the rounding instead of HA.
@deiger I update the new hisense.py, in HA there isn't the power botton why?
I solved the service startup problem, @wifi75 change the original file config like this. You can edit with: sudo nano /lib/systemd/system/stanzetta.service [Unit] Description=Hisense A/C server After=docker.service
[Service] ExecStart=/usr/bin/python3 -u hisense.py --port 8890 --ip 192.168.1.115 --confi> WorkingDirectory=/usr/lib/hisense StandardOutput=inherit StandardError=inherit Restart=always RestartSec=3
[Install] WantedBy=multi-user.target When you finished press ctrl+x, save and exit Restart and all works
Thank you @ck007max now work!
@deiger I update the new hisense.py, in HA there isn't the power botton why?
You have to create a mqtt switch for each AC as follow:
switch:
- platform: mqtt name: HiSense AC Stanzetta state_topic: "stanzetta/t_power/status" command_topic: "stanzetta/t_power/command" payload_on: "on" payload_off: "off" qos: 1
That's it
@ck007max it seems that HA doesn't honor the precision setting, and provides unrounded temperature post-conversion from Celsius (21ºC=69.8ºF). I changed the code to do the rounding instead of HA.
I've tried, but It doesn't work. I've sent the log of the problem in your commit
@ck007max it is possible insert button here: