Arduino + DMSG-020 = Blow
// C++ , Arduino , DMSG-020 , SSD1306 , Blow #include <EEPROM.h> const int EEPROM_ADDR = 0 ; // Строка должна быть ТУТ, до setup! bool License = false ; // И эта строка тоже тут #include <SPI.h> #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> #define RELAY_PIN A0 #define Sensor_PIN A1 // Коричневый провод датчика #define Sensor_GND A2 // Синий провод датчика (делаем из него минус) #define switch_Delay_1 2 #define switch_Delay_2 3 #define switch_Delay_3 4 #define switch_Delay_4 5 #define switch_Delay_5 6 #define switch_Blow_1 7 #define switch_Blow_2 8 #define switch_Blow_3 9 #define switch_Blow_4 10 #define switch_Blow_5 11 #define switch_ON 12 bool RePlay = false ; bool Sensor = false ; bool Relay = false ; float Delay = 0.0 ; float Blow = 0.0 ; // Declaration for an SSD1306 display connected to I2C (SDA, SCL pins) // The pins...