mobilebasic/Examples/Sensors/ambienttemperature.bas

10 lines
231 B
QBasic
Raw Permalink Normal View History

2021-03-29 19:43:07 +03:00
SUB MAIN
IF (IsAmbientTemperatureAvailable()) THEN
WHILE (TRUE)
PRINT getAmbientTemperature()
SLEEP 1000
END WHILE
ELSE
PRINT "Ambient Temperature Sensor is not available on this device"
END IF
END SUB