Update LoRaBoards
This commit is contained in:
parent
904e3f64d7
commit
84d258883b
99 changed files with 347 additions and 49 deletions
|
|
@ -996,6 +996,11 @@ void scanDevices(TwoWire *w)
|
|||
}
|
||||
}
|
||||
break;
|
||||
case 0x7C:
|
||||
Serial.printf("\tFound QMC6309 Sensor at address 0x%02X\n", addr);
|
||||
mag_address = addr;
|
||||
deviceOnline |= QMC6309_ONLINE;
|
||||
break;
|
||||
case 0x51:
|
||||
Serial.printf("\tFound PCF8563 RTC at address 0x%02X\n", addr);
|
||||
deviceOnline |= PCF8563_ONLINE;
|
||||
|
|
|
|||
|
|
@ -58,7 +58,8 @@ enum {
|
|||
QMC6310N_ONLINE = _BV(11),
|
||||
QMI8658_ONLINE = _BV(12),
|
||||
PCF8563_ONLINE = _BV(13),
|
||||
OSC32768_ONLINE = _BV(14)
|
||||
OSC32768_ONLINE = _BV(14),
|
||||
QMC6309_ONLINE = _BV(15),
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue