From 860b4230bb5659e19f8ff3c9aa673cbb76681154 Mon Sep 17 00:00:00 2001 From: Bonezegei <93502321+bonezegei@users.noreply.github.com> Date: Fri, 29 Sep 2023 10:50:04 +0800 Subject: [PATCH] Create ScanI2C.ino --- examples/ScanI2C.ino | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 examples/ScanI2C.ino diff --git a/examples/ScanI2C.ino b/examples/ScanI2C.ino new file mode 100644 index 0000000..bfb4e81 --- /dev/null +++ b/examples/ScanI2C.ino @@ -0,0 +1,16 @@ +/* + Scan address 0-255 connected to I2c + and prints the output to Serial + Author: Bonezegei (Jofel Batutay) + Date: September 2023 +*/ + +#include "Bonezegei_I2CScan.h" + +void setup() { + Serial.begin(115200); + Bonezegei_I2CScan(); +} + +void loop() { +}