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 6caefbb commit 0ebdf68Copy full SHA for 0ebdf68
examples/IKS01A3_S2LP_P2P_Demo/IKS01A3_S2LP_P2P_Demo.ino
@@ -114,17 +114,23 @@ void setup() {
114
devSPI->begin();
115
116
AccGyr = new LSM6DSOSensor (&DEV_I2C);
117
+ AccGyr->begin();
118
AccGyr->Enable_X();
119
AccGyr->Enable_G();
120
Acc2 = new LIS2DW12Sensor (&DEV_I2C);
121
+ Acc2->begin();
122
Acc2->Enable_X();
123
Mag = new LIS2MDLSensor (&DEV_I2C);
124
+ Mag->begin();
125
Mag->Enable();
126
PressTemp = new LPS22HHSensor(&DEV_I2C);
127
+ PressTemp->begin();
128
PressTemp->Enable();
129
HumTemp = new HTS221Sensor (&DEV_I2C);
130
+ HumTemp->begin();
131
HumTemp->Enable();
132
Temp3 = new STTS751Sensor (&DEV_I2C);
133
+ Temp3->begin();
134
Temp3->Enable();
135
136
// Initialize M95640-R
0 commit comments