Raspberry Pi - Automation and Scheduling
Given the code below, what will be printed if
sensor_value = 75?
def check_sensor(value):
if value > 70:
print("Alert: High sensor value!")
else:
print("Sensor value normal.")
check_sensor(sensor_value)