mobilebasic/Examples/Sensors/temperature.bas

10 lines
209 B
QBasic
Raw Normal View History

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