-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome-assistant.log.1
3312 lines (2371 loc) · 406 KB
/
home-assistant.log.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2024-08-04 18:38:15.323 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration dreame_vacuum which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-08-04 18:38:15.324 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration mbapi2020 which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-08-04 18:38:15.325 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration smartthinq_sensors which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-08-04 18:38:15.326 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration zha_toolkit which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-08-04 18:38:15.326 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration xiaomi_cloud_map_extractor which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-08-04 18:38:15.327 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration ui_lovelace_minimalist which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-08-04 18:38:15.328 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration ble_monitor which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-08-04 18:38:15.329 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-08-04 18:38:15.330 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration xiaomi_miot which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-08-04 18:38:15.330 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration switchbotremote which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2024-08-04 18:38:18.434 WARNING (SyncWorker_4) [miio.device] Found an unsupported model 'dreame.vacuum.p2027' for class 'RoborockVacuum'. If this is working for you, please open an issue at https://github.com/rytilahti/python-miio/
2024-08-04 18:38:24.013 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' calls hass.http.register_static_path which is deprecated because it does blocking I/O in the event loop, instead call `await hass.http.async_register_static_paths([StaticPathConfig("/hacsfiles/frontend", "/config/custom_components/hacs/hacs_frontend_experimental", False)])`; This function will be removed in 2025.7 at custom_components/hacs/frontend.py, line 49: hass.http.register_static_path(, please create a bug report at https://github.com/hacs/integration/issues
2024-08-04 18:38:24.017 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' calls hass.http.register_static_path which is deprecated because it does blocking I/O in the event loop, instead call `await hass.http.async_register_static_paths([StaticPathConfig("/hacsfiles/iconset.js", "/config/custom_components/hacs/iconset.js", True)])`; This function will be removed in 2025.7 at custom_components/hacs/frontend.py, line 57: hass.http.register_static_path(, please create a bug report at https://github.com/hacs/integration/issues
2024-08-04 18:38:24.020 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' accesses hass.components.frontend. This is deprecated and will stop working in Home Assistant 2024.9, it should be updated to import functions used from frontend directly at custom_components/hacs/frontend.py, line 68: hass.components.frontend.async_register_built_in_panel(, please create a bug report at https://github.com/hacs/integration/issues
2024-08-04 18:38:24.026 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' calls hass.http.register_static_path which is deprecated because it does blocking I/O in the event loop, instead call `await hass.http.async_register_static_paths([StaticPathConfig("/hacsfiles", "/config/www/community", True)])`; This function will be removed in 2025.7 at custom_components/hacs/base.py, line 1162: self.hass.http.register_static_path(, please create a bug report at https://github.com/hacs/integration/issues
2024-08-04 18:38:24.620 ERROR (SyncWorker_8) [homeassistant] Error doing job: Task exception was never retrieved (None)
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/components/assist_pipeline/__init__.py", line 131, in async_pipeline_from_audio_stream
await pipeline_input.validate()
File "/usr/src/homeassistant/homeassistant/components/assist_pipeline/pipeline.py", line 1440, in validate
raise PipelineRunValidationError(
homeassistant.components.assist_pipeline.pipeline.PipelineRunValidationError: the pipeline does not support speech-to-text
2024-08-04 18:38:34.507 ERROR (SyncWorker_4) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-08-04 18:38:40.199 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Integration repo "browser mod" is not installed!
2024-08-04 18:38:40.199 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Frontend repo "button-card" is not installed, See Integration Configuration.
2024-08-04 18:38:40.199 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Frontend repo "light-entity-card" is not installed, See Integration Configuration.
2024-08-04 18:38:40.200 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Frontend repo "lovelace-card-mod" is not installed, See Integration Configuration.
2024-08-04 18:38:40.200 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Frontend repo "lovelace-auto-entities" is not installed, See Integration Configuration.
2024-08-04 18:38:40.201 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Frontend repo "mini-graph-card" is not installed, See Integration Configuration.
2024-08-04 18:38:40.201 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Frontend repo "mini-media-player" is not installed, See Integration Configuration.
2024-08-04 18:38:40.201 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Frontend repo "my-cards" is not installed, See Integration Configuration.
2024-08-04 18:38:40.202 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Frontend repo "simple-weather-card" is not installed, See Integration Configuration.
2024-08-04 18:38:40.202 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Frontend repo "lovelace-layout-card" is not installed, See Integration Configuration.
2024-08-04 18:38:40.202 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Frontend repo "lovelace-state-switch" is not installed, See Integration Configuration.
2024-08-04 18:38:40.202 ERROR (MainThread) [custom_components.ui_lovelace_minimalist.base] HACS Frontend repo "weather-radar-card" is not installed, See Integration Configuration.
2024-08-04 18:38:40.207 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'ui_lovelace_minimalist' calls hass.http.register_static_path which is deprecated because it does blocking I/O in the event loop, instead call `await hass.http.async_register_static_paths([StaticPathConfig("/ui_lovelace_minimalist/cards", "/config/custom_components/ui_lovelace_minimalist/cards", True)])`; This function will be removed in 2025.7 at custom_components/ui_lovelace_minimalist/base.py, line 366: self.hass.http.register_static_path(, please create a bug report at https://github.com/UI-Lovelace-Minimalist/UI/issues
2024-08-04 18:38:40.320 WARNING (MainThread) [homeassistant.helpers.frame] Detected that custom integration 'hacs' accesses hass.helpers.event. This is deprecated and will stop working in Home Assistant 2024.11, it should be updated to import functions used from event directly at custom_components/hacs/base.py, line 642: self.hass.helpers.event.async_track_time_interval(, please create a bug report at https://github.com/hacs/integration/issues
2024-08-04 18:38:43.053 WARNING (SyncWorker_14) [miio.device] Found an unsupported model 'dreame.vacuum.p2027' for class 'RoborockVacuum'. If this is working for you, please open an issue at https://github.com/rytilahti/python-miio/
2024-08-04 18:38:50.609 ERROR (SyncWorker_4) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-08-04 18:38:54.393 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:38:54.394 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:38:56.302 WARNING (SyncWorker_14) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:39:00.163 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:39:00.163 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:39:00.341 ERROR (SyncWorker_14) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-08-04 18:39:03.369 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/miioprotocol.py:50: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
self._device_ts: datetime = datetime.utcnow()
2024-08-04 18:39:03.418 WARNING (SyncWorker_20) [miio.device] Found an unsupported model 'dreame.vacuum.p2027' for class 'RoborockVacuum'. If this is working for you, please open an issue at https://github.com/rytilahti/python-miio/
2024-08-04 18:39:16.416 ERROR (SyncWorker_14) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-08-04 18:39:19.485 ERROR (SyncWorker_20) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-08-04 18:39:24.354 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:39:24.356 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:39:27.512 WARNING (SyncWorker_20) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:39:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:39:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:39:33.693 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/miioprotocol.py:50: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
self._device_ts: datetime = datetime.utcnow()
2024-08-04 18:39:33.742 WARNING (SyncWorker_19) [miio.device] Found an unsupported model 'dreame.vacuum.p2027' for class 'RoborockVacuum'. If this is working for you, please open an issue at https://github.com/rytilahti/python-miio/
2024-08-04 18:39:35.545 ERROR (SyncWorker_20) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-08-04 18:39:49.803 ERROR (SyncWorker_19) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-08-04 18:39:54.317 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:39:54.328 WARNING (SyncWorker_23) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:39:54.329 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:39:57.840 WARNING (SyncWorker_19) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:40:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:40:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:40:06.299 ERROR (SyncWorker_19) [miio.miioprotocol] Got error when receiving: {'code': -9999, 'message': 'user ack timeout'}
2024-08-04 18:40:24.360 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:40:24.360 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:40:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:40:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:40:41.065 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.12/site-packages/micloud/micloud.py:36: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
self.locale = locale.getdefaultlocale()[0]
2024-08-04 18:40:50.621 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.12/site-packages/micloud/micloud.py:36: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
self.locale = locale.getdefaultlocale()[0]
2024-08-04 18:40:50.762 WARNING (MainThread) [custom_components.xiaomi_miot] None device in xiaomi cloud: [email protected]
2024-08-04 18:40:54.797 WARNING (SyncWorker_25) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:40:54.804 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:40:54.805 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:41:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:41:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:41:24.323 WARNING (SyncWorker_4) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:41:24.325 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:41:24.338 WARNING (SyncWorker_18) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:41:24.340 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:41:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:41:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:41:35.442 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.12/site-packages/micloud/micloud.py:36: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
self.locale = locale.getdefaultlocale()[0]
2024-08-04 18:41:45.373 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/miioprotocol.py:50: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
self._device_ts: datetime = datetime.utcnow()
2024-08-04 18:41:45.391 WARNING (SyncWorker_27) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:41:54.365 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:41:54.366 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:42:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:42:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:42:24.329 WARNING (SyncWorker_33) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:42:24.331 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:42:24.339 WARNING (SyncWorker_29) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:42:24.341 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:42:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:42:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:42:45.372 WARNING (MainThread) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/miioprotocol.py:50: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
self._device_ts: datetime = datetime.utcnow()
2024-08-04 18:42:45.594 WARNING (SyncWorker_36) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:42:46.250 WARNING (MainThread) [homeassistant.components.light] light.chuangmi_029a02_eb56_indicator_light (<class 'custom_components.xiaomi_miot.light.MiotLightSubEntity'>) does not report a color mode, this will stop working in Home Assistant Core 2025.3, please create a bug report at https://github.com/al-one/hass-xiaomi-miot/issues
2024-08-04 18:42:46.462 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722184966000, 'isContinue': True}, 'description': '成功', 'ts': 1722789766438}
2024-08-04 18:42:54.369 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:42:54.370 WARNING (SyncWorker_7) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:42:54.372 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:43:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:43:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:43:16.820 WARNING (MainThread) [switchbot.devices.device] C8-FC-2A-AC-FD-7B (C8:FC:2A:AC:FD:7B): Device unexpectedly disconnected; RSSI: -60
2024-08-04 18:43:17.150 WARNING (MainThread) [switchbot.devices.device] C8-FC-2A-AC-FD-7B (C8:FC:2A:AC:FD:7B): Device unexpectedly disconnected; RSSI: -60
2024-08-04 18:43:17.570 WARNING (MainThread) [switchbot.devices.device] C8-FC-2A-AC-FD-7B (C8:FC:2A:AC:FD:7B): Device unexpectedly disconnected; RSSI: -60
2024-08-04 18:43:24.325 WARNING (SyncWorker_39) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:43:24.327 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:43:24.334 WARNING (SyncWorker_30) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:43:24.336 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:43:30.160 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:43:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:43:45.588 WARNING (SyncWorker_16) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:43:46.458 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185026000, 'isContinue': True}, 'description': '成功', 'ts': 1722789826435}
2024-08-04 18:43:54.613 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:43:54.613 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:44:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:44:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:44:19.746 ERROR (MainThread) [aiohttp.server] Error handling request
Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 174, in _new_conn
conn = connection.create_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 95, in create_connection
raise err
File "/usr/local/lib/python3.12/site-packages/urllib3/util/connection.py", line 85, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 715, in urlopen
httplib_response = self._make_request(
^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 404, in _make_request
self._validate_conn(conn)
File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 1060, in _validate_conn
conn.connect()
File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 363, in connect
self.sock = conn = self._new_conn()
^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/urllib3/connection.py", line 186, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7fecc43d24e0>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 667, in send
resp = conn.urlopen(
^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/urllib3/connectionpool.py", line 801, in urlopen
retries = retries.increment(
^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/urllib3/util/retry.py", line 594, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='de05.livestreaming.io.mi.com', port=443): Max retries exceeded with url: /hlstranscoder/GCA2MTQzYjNjOGYzYTY0NjYzYjIwODM0MTYyOGJiYzMxMhgKX191bnVzZWRfXwA_H265transH264/playlist.m3u8 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fecc43d24e0>: Failed to establish a new connection: [Errno 111] Connection refused'))
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/aiohttp/web_protocol.py", line 456, in _handle_request
resp = await request_handler(request)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/aiohttp/web_app.py", line 537, in _handle
resp = await handler(request)
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/aiohttp/web_middlewares.py", line 114, in impl
return await handler(request)
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/http/security_filter.py", line 92, in security_filter_middleware
return await handler(request)
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/http/forwarded.py", line 83, in forwarded_middleware
return await handler(request)
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/http/request_context.py", line 26, in request_context_middleware
return await handler(request)
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/http/ban.py", line 85, in ban_middleware
return await handler(request)
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/http/auth.py", line 242, in auth_middleware
return await handler(request)
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/http/headers.py", line 32, in headers_middleware
response = await handler(request)
^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/helpers/http.py", line 73, in handle
result = await handler(request, **request.match_info)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/camera/__init__.py", line 813, in get
return await self.handle(request, camera)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/camera/__init__.py", line 831, in handle
image = await _async_get_image(
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/camera/__init__.py", line 185, in _async_get_image
else await camera.async_camera_image(width=width, height=height)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/config/custom_components/xiaomi_miot/camera.py", line 111, in async_camera_image
url = await self.image_source()
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/config/custom_components/xiaomi_miot/camera.py", line 336, in image_source
return await self.stream_source()
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/config/custom_components/xiaomi_miot/camera.py", line 328, in stream_source
return await self.hass.async_add_executor_job(partial(fun, **kwargs))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/concurrent/futures/thread.py", line 58, in run
result = self.fn(*self.args, **self.kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/config/custom_components/xiaomi_miot/camera.py", line 387, in get_stream_address
self.async_check_stream_address(self._last_url)
File "/config/custom_components/xiaomi_miot/camera.py", line 402, in async_check_stream_address
res = requests.head(url)
^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 100, in head
return request("head", url, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/requests/api.py", line 59, in request
return session.request(method=method, url=url, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 589, in request
resp = self.send(prep, **send_kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/requests/sessions.py", line 703, in send
r = adapter.send(request, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/requests/adapters.py", line 700, in send
raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='de05.livestreaming.io.mi.com', port=443): Max retries exceeded with url: /hlstranscoder/GCA2MTQzYjNjOGYzYTY0NjYzYjIwODM0MTYyOGJiYzMxMhgKX191bnVzZWRfXwA_H265transH264/playlist.m3u8 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fecc43d24e0>: Failed to establish a new connection: [Errno 111] Connection refused'))
2024-08-04 18:44:24.328 WARNING (SyncWorker_24) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:44:24.330 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:44:24.350 WARNING (SyncWorker_10) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:44:24.352 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:44:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:44:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:44:46.322 WARNING (SyncWorker_6) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:44:51.661 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185091000, 'isContinue': True}, 'description': '成功', 'ts': 1722789891605}
2024-08-04 18:44:54.335 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:44:54.345 WARNING (SyncWorker_19) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:44:54.348 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:45:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:45:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:45:24.704 WARNING (SyncWorker_6) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:45:24.708 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:45:24.709 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:45:30.160 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:45:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:45:45.615 WARNING (SyncWorker_0) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:45:46.511 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185146000, 'isContinue': True}, 'description': '成功', 'ts': 1722789946483}
2024-08-04 18:45:54.338 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:45:54.353 WARNING (SyncWorker_15) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:45:54.355 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:46:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:46:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:46:24.339 WARNING (SyncWorker_23) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:46:24.341 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:46:24.349 WARNING (SyncWorker_25) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:46:24.351 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:46:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:46:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:46:45.604 WARNING (SyncWorker_18) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:46:46.470 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185206000, 'isContinue': True}, 'description': '成功', 'ts': 1722790006446}
2024-08-04 18:46:54.339 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:46:54.349 WARNING (SyncWorker_55) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:46:54.351 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:47:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:47:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:47:25.422 WARNING (SyncWorker_8) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:47:25.425 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:47:25.427 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:47:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:47:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:47:45.626 WARNING (SyncWorker_14) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:47:46.553 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185266000, 'isContinue': True}, 'description': '成功', 'ts': 1722790066524}
2024-08-04 18:47:54.350 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:47:54.360 WARNING (SyncWorker_5) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:47:54.362 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:48:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:48:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:48:24.336 WARNING (SyncWorker_22) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:48:24.338 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:48:24.348 WARNING (SyncWorker_40) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:48:24.350 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:48:30.160 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:48:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:48:45.627 WARNING (SyncWorker_28) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:48:46.560 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185326000, 'isContinue': True}, 'description': '成功', 'ts': 1722790126537}
2024-08-04 18:48:54.429 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:48:54.435 WARNING (SyncWorker_19) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:48:54.437 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:49:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:49:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:49:24.411 WARNING (SyncWorker_30) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:49:24.414 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:49:24.414 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:49:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:49:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:49:45.601 WARNING (SyncWorker_47) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:49:46.442 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185386000, 'isContinue': True}, 'description': '成功', 'ts': 1722790186419}
2024-08-04 18:49:54.339 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:49:54.349 WARNING (SyncWorker_25) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:49:54.351 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:50:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:50:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:50:24.420 WARNING (SyncWorker_31) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:50:24.423 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:50:24.425 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:50:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:50:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:50:45.839 WARNING (SyncWorker_45) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:50:47.081 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185446000, 'isContinue': True}, 'description': '成功', 'ts': 1722790247057}
2024-08-04 18:50:54.338 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:50:54.349 WARNING (SyncWorker_55) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:50:54.352 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:51:00.160 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:51:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:51:24.430 WARNING (SyncWorker_20) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:51:24.435 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:51:24.435 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:51:30.160 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:51:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:51:45.600 WARNING (SyncWorker_23) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:51:46.420 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185506000, 'isContinue': True}, 'description': '成功', 'ts': 1722790306397}
2024-08-04 18:51:54.346 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:51:54.356 WARNING (SyncWorker_45) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:51:54.358 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:52:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:52:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:52:24.432 WARNING (SyncWorker_40) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:52:24.434 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:52:24.434 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:52:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:52:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:52:45.620 WARNING (SyncWorker_62) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:52:46.620 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185566000, 'isContinue': True}, 'description': '成功', 'ts': 1722790366595}
2024-08-04 18:52:54.351 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:52:54.358 WARNING (SyncWorker_26) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:52:54.360 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:53:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:53:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:53:24.438 WARNING (SyncWorker_18) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:53:24.441 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:53:24.442 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:53:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:53:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:53:45.607 WARNING (SyncWorker_50) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:53:46.990 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185626000, 'isContinue': True}, 'description': '成功', 'ts': 1722790426934}
2024-08-04 18:53:54.348 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:53:54.358 WARNING (SyncWorker_32) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:53:54.360 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:54:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:54:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:54:24.446 WARNING (SyncWorker_9) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:54:24.447 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:54:24.448 WARNING (SyncWorker_51) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:54:24.450 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:54:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:54:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:54:45.608 WARNING (SyncWorker_46) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:54:46.436 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185686000, 'isContinue': True}, 'description': '成功', 'ts': 1722790486414}
2024-08-04 18:54:54.347 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:54:54.358 WARNING (SyncWorker_24) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:54:54.359 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:55:00.160 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:55:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:55:24.472 WARNING (SyncWorker_1) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:55:24.474 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:55:24.477 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:55:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:55:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:55:45.609 WARNING (SyncWorker_40) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:55:46.794 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185746000, 'isContinue': True}, 'description': '成功', 'ts': 1722790546770}
2024-08-04 18:55:54.357 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:55:54.367 WARNING (SyncWorker_10) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:55:54.369 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:56:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:56:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:56:24.464 WARNING (SyncWorker_55) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:56:24.467 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:56:24.469 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:56:30.160 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:56:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:56:45.606 WARNING (SyncWorker_16) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:56:47.269 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185806000, 'isContinue': True}, 'description': '成功', 'ts': 1722790607213}
2024-08-04 18:56:54.348 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:56:54.358 WARNING (SyncWorker_59) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:56:54.360 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:57:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:57:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:57:24.363 WARNING (SyncWorker_42) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:57:24.365 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:57:24.367 WARNING (SyncWorker_9) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:57:24.369 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:57:30.160 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:57:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:57:45.607 WARNING (SyncWorker_25) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:57:46.589 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185866000, 'isContinue': True}, 'description': '成功', 'ts': 1722790666533}
2024-08-04 18:57:54.352 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:57:54.380 WARNING (SyncWorker_16) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:57:54.382 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:58:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:58:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:58:24.376 WARNING (SyncWorker_40) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:58:24.378 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:58:24.379 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:58:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:58:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:58:45.607 WARNING (SyncWorker_7) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:58:46.973 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185926000, 'isContinue': True}, 'description': '成功', 'ts': 1722790726917}
2024-08-04 18:58:54.359 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:58:54.368 WARNING (SyncWorker_63) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:58:54.370 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:59:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:59:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:59:24.374 WARNING (SyncWorker_47) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:59:24.376 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:59:24.377 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:59:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 18:59:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 18:59:45.629 WARNING (SyncWorker_22) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:59:46.905 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722185986000, 'isContinue': True}, 'description': '成功', 'ts': 1722790786780}
2024-08-04 18:59:54.370 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 18:59:54.389 WARNING (SyncWorker_29) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 18:59:54.391 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 19:00:00.160 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 19:00:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 19:00:24.387 WARNING (SyncWorker_44) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 19:00:24.390 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 19:00:24.390 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 19:00:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 19:00:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 19:00:45.610 WARNING (SyncWorker_10) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 19:00:46.386 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722186046000, 'isContinue': True}, 'description': '成功', 'ts': 1722790846365}
2024-08-04 19:00:54.359 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 19:00:54.369 WARNING (SyncWorker_22) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 19:00:54.370 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 19:01:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 19:01:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 19:01:24.362 WARNING (SyncWorker_39) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 19:01:24.364 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 19:01:24.376 WARNING (SyncWorker_63) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 19:01:24.378 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 19:01:30.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 19:01:30.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 19:01:45.610 WARNING (SyncWorker_27) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 19:01:46.481 WARNING (MainThread) [custom_components.xiaomi_miot.camera] Mi 360° Home Security Camera 2K(chuangmi.camera.029a02): camera events is empty. {'result': 'ok', 'retriable': False, 'code': 0, 'data': {'thirdPartPlayUnits': [], 'nextTime': 1722186106000, 'isContinue': True}, 'description': '成功', 'ts': 1722790906452}
2024-08-04 19:01:54.401 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 19:01:54.405 WARNING (SyncWorker_21) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)
2024-08-04 19:01:54.407 WARNING (MainThread) [py.warnings] /usr/src/homeassistant/homeassistant/components/xiaomi_miio/switch.py:1029: DeprecationWarning: Call to deprecated function wifi_led (Use led()).
if state.wifi_led:
2024-08-04 19:02:00.161 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:982: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
diff = (datetime.utcnow() - self._token_created_on).total_seconds()
2024-08-04 19:02:00.162 WARNING (MainThread) [py.warnings] /config/custom_components/smartthinq_sensors/wideq/core_async.py:1500: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.now(datetime.UTC).
call_time = datetime.utcnow()
2024-08-04 19:02:24.362 WARNING (SyncWorker_19) [py.warnings] /usr/local/lib/python3.12/site-packages/miio/protocol.py:146: DeprecationWarning: datetime.datetime.utcfromtimestamp() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.fromtimestamp(timestamp, datetime.UTC).
return datetime.datetime.utcfromtimestamp(obj)