mirror of
https://github.com/cmur2/python-bme680.git
synced 2024-11-13 02:56:20 +01:00
Fix TypeError preventing script to launch
TypeError: argument should be integer or bytes-like object, not 'str'
This commit is contained in:
parent
7e6bdd0dc4
commit
056049ee03
@ -32,7 +32,7 @@ sensor.set_filter(bme680.FILTER_SIZE_3)
|
||||
def get_cpu_temperature():
|
||||
process = Popen(['vcgencmd', 'measure_temp'], stdout=PIPE)
|
||||
output, _error = process.communicate()
|
||||
return float(output[output.index('=') + 1:output.rindex("'")])
|
||||
return float(output[output.index(ord('=')) + 1:output.rindex(ord("'"))])
|
||||
|
||||
|
||||
factor = 1.0 # Smaller numbers adjust temp down, vice versa
|
||||
|
Loading…
Reference in New Issue
Block a user