You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
voidenableDebugging(Stream &debugPort = Serial); //Turn on debug printing. If user doesn't specify then Serial will be used.
109
+
voidenableDebugging(Stream &debugPort = Serial); //Turn on debug printing. If user doesn't specify then Serial will be used
110
+
111
+
boolstartPeriodicMeasurement(void); // Signal update interval is 5 seconds
109
112
110
-
boolstartPeriodicMeasurement(void); //Signal update interval is 5 seconds
111
113
// stopPeriodicMeasurement can be called before .begin if required
112
114
// If the sensor has been begun (_i2cPort is not NULL) then _i2cPort is used
113
115
// If the sensor has not been begun (_i2cPort is NULL) then wirePort and address are used (which will default to Wire)
116
+
// Note that the sensor will only respond to other commands after waiting 500 ms after issuing the stop_periodic_measurement command.
114
117
#ifdef USE_TEENSY3_I2C_LIB
115
-
boolstopPeriodicMeasurement(uint16_t delayMillis = 500, i2c_t3 &wirePort = Wire);//Note that the sensor will only respond to other commands after waiting 500 ms after issuing the stop_periodic_measurement command.
boolstopPeriodicMeasurement(uint16_t delayMillis = 500, TwoWire &wirePort = Wire);//Note that the sensor will only respond to other commands after waiting 500 ms after issuing the stop_periodic_measurement command.
0 commit comments