Raspberry Pi - Automation and Scheduling
What will the following code print if sensor_value is 60 and threshold is 60?
sensor_value = 60
threshold = 60
if sensor_value >= threshold:
print('Threshold reached')
else:
print('Below threshold')