File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ def get_cpu_temperature():
8787# temperature down, and increase to adjust up
8888factor = 0.8
8989
90- cpu_temps = [0 ] * 5
90+ cpu_temps = [get_cpu_temperature () ] * 5
9191
9292delay = 0.5 # Debounce the proximity tap
9393mode = 0 # The starting mode
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ def get_cpu_temperature():
9393# temperature down, and increase to adjust up
9494factor = 0.8
9595
96- cpu_temps = [0 ] * 5
96+ cpu_temps = [get_cpu_temperature () ] * 5
9797
9898delay = 0.5 # Debounce the proximity tap
9999mode = 0 # The starting mode
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def get_cpu_temperature():
3333# temperature down, and increase to adjust up
3434factor = 0.8
3535
36- cpu_temps = [0 ] * 5
36+ cpu_temps = [get_cpu_temperature () ] * 5
3737
3838while True :
3939 cpu_temp = get_cpu_temperature ()
You can’t perform that action at this time.
0 commit comments