mobilebasic/Examples/Sensors/pressure.bas

10 lines
200 B
QBasic
Raw Permalink Normal View History

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