We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ebdf68 commit bf99419Copy full SHA for bf99419
examples/BleSensors_SensiBLE/BleSensors_SensiBLE.ino
@@ -122,15 +122,18 @@ void setup() {
122
123
// Initlialize Components.
124
AccGyr = new LSM6DS3Sensor(&DEV_I2C, LSM6DS3_ACC_GYRO_I2C_ADDRESS_LOW);
125
+ AccGyr->begin();
126
AccGyr->Enable_X();
127
AccGyr->Enable_G();
128
SerialPort.println("Init Acc&Gyr");
129
130
HumTemp = new HTS221Sensor (&DEV_I2C);
131
+ HumTemp->begin();
132
HumTemp->Enable();
133
SerialPort.println("Init Hum&Temp");
134
135
PressTemp = new LPS25HBSensor (&DEV_I2C);
136
+ PressTemp->begin();
137
PressTemp->Enable();
138
SerialPort.println("Init Pressure&Temp");
139
}
0 commit comments