firmware in v1 verschoben

This commit is contained in:
LinoSchmidt
2022-01-08 22:41:41 +01:00
parent 9c9b749c2e
commit c0ab45a792
14 changed files with 110 additions and 2 deletions

View File

@@ -1,21 +0,0 @@
#include <Adafruit_I2CDevice.h>
Adafruit_I2CDevice i2c_dev = Adafruit_I2CDevice(0x10);
void setup() {
while (!Serial) { delay(10); }
Serial.begin(115200);
Serial.println("I2C address detection test");
if (!i2c_dev.begin()) {
Serial.print("Did not find device at 0x");
Serial.println(i2c_dev.address(), HEX);
while (1);
}
Serial.print("Device found on address 0x");
Serial.println(i2c_dev.address(), HEX);
}
void loop() {
}