Skip to content

Commit

Permalink
Update feather_sense_sensor_demo.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
BlitzCityDIY committed Jan 24, 2024
1 parent fe39638 commit c28596f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void setup(void) {
}
}
// and we need to instantiate the LSM6DS3TRC
if (new_rev = true) {
if (new_rev == true) {
lsm6ds3trc.begin_I2C();
}
sht30.begin();
Expand All @@ -95,7 +95,7 @@ void loop(void) {
sensors_event_t accel;
sensors_event_t gyro;
sensors_event_t temp;
if (new_rev = true) {
if (new_rev == true) {
lsm6ds3trc.getEvent(&accel, &gyro, &temp);
}
else {
Expand Down

0 comments on commit c28596f

Please sign in to comment.