Сканер i2c устройств:
#include <Wire.h>
#include <Arduino.h>
long speed[] = { 50, 100, 200, 250, 400, 500, 800 };
const int speeds = sizeof(speed)/sizeof(speed[0]);
#define RESTORE_LATENCY 5
bool delayFlag = false;
bool printAll = true;
bool header = true;
enum states { STOP, ONCE, CONT, HELP...