File tree 1 file changed +8
-7
lines changed
1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -37,15 +37,16 @@ async def _main():
37
37
logging .info (f"Serial Device found at { device .port } " )
38
38
await device .connect ()
39
39
40
+ sensors = get_sensors ()
41
+ cpu_temperatures = {k : int (v ) for k , v in sensors .items () if CPU_SENSOR_FILTER in k }
42
+ gpu_temperatures = {k : int (v ) for k , v in sensors .items () if GPU_SENSOR_FILTER in k }
43
+
44
+ cpu_temp = max (cpu_temperatures .values () or [0 ])
45
+ gpu_temp = max (gpu_temperatures .values () or [0 ])
46
+
40
47
if device .connected :
41
48
dimmer = await device .read_dimmer_value ()
42
- sensors = get_sensors ()
43
-
44
- cpu_temperatures = {k : int (v ) for k , v in sensors .items () if CPU_SENSOR_FILTER in k }
45
- gpu_temperatures = {k : int (v ) for k , v in sensors .items () if GPU_SENSOR_FILTER in k }
46
49
47
- cpu_temp = max (cpu_temperatures .values () or [0 ])
48
- gpu_temp = max (gpu_temperatures .values () or [0 ])
49
50
if initial :
50
51
logging .info (f"Starting with CPU: { cpu_temp } , GPU: { gpu_temp } . { PWM_COMMAND } : { dimmer } " )
51
52
initial = False
@@ -69,7 +70,7 @@ async def _main():
69
70
70
71
await asyncio .sleep (DELAY )
71
72
else :
72
- logging .info (f"No device connected" )
73
+ logging .info (f"No device connected. CPU: { cpu_temp } , GPU: { gpu_temp } " )
73
74
raise DimmerException
74
75
75
76
except asyncio .CancelledError :
You can’t perform that action at this time.
0 commit comments