Skip to content

Commit 6ace847

Browse files
committedDec 5, 2024
! print even if no device found
1 parent 3c47c78 commit 6ace847

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed
 

‎source/__main__.py

+8-7
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,16 @@ async def _main():
3737
logging.info(f"Serial Device found at {device.port}")
3838
await device.connect()
3939

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+
4047
if device.connected:
4148
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}
4649

47-
cpu_temp = max(cpu_temperatures.values() or [0])
48-
gpu_temp = max(gpu_temperatures.values() or [0])
4950
if initial:
5051
logging.info(f"Starting with CPU: {cpu_temp}, GPU: {gpu_temp}. {PWM_COMMAND}: {dimmer}")
5152
initial = False
@@ -69,7 +70,7 @@ async def _main():
6970

7071
await asyncio.sleep(DELAY)
7172
else:
72-
logging.info(f"No device connected")
73+
logging.info(f"No device connected. CPU: {cpu_temp}, GPU: {gpu_temp}")
7374
raise DimmerException
7475

7576
except asyncio.CancelledError:

0 commit comments

Comments
 (0)