├── .gitattributes ├── .gitignore ├── LCD_1602_RUS-master ├── LCD_1602_RUS.cpp ├── LCD_1602_RUS.h ├── LICENSE ├── LiquidCrystal_I2C.cpp ├── LiquidCrystal_I2C.h ├── README.md ├── examples │ └── HelloWorld │ │ └── HelloWorld.ino └── library.properties ├── README.md ├── scheme.jpg └── tachometer_LCD └── tachometer_LCD.ino /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/.gitignore -------------------------------------------------------------------------------- /LCD_1602_RUS-master/LCD_1602_RUS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/LCD_1602_RUS-master/LCD_1602_RUS.cpp -------------------------------------------------------------------------------- /LCD_1602_RUS-master/LCD_1602_RUS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/LCD_1602_RUS-master/LCD_1602_RUS.h -------------------------------------------------------------------------------- /LCD_1602_RUS-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/LCD_1602_RUS-master/LICENSE -------------------------------------------------------------------------------- /LCD_1602_RUS-master/LiquidCrystal_I2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/LCD_1602_RUS-master/LiquidCrystal_I2C.cpp -------------------------------------------------------------------------------- /LCD_1602_RUS-master/LiquidCrystal_I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/LCD_1602_RUS-master/LiquidCrystal_I2C.h -------------------------------------------------------------------------------- /LCD_1602_RUS-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/LCD_1602_RUS-master/README.md -------------------------------------------------------------------------------- /LCD_1602_RUS-master/examples/HelloWorld/HelloWorld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/LCD_1602_RUS-master/examples/HelloWorld/HelloWorld.ino -------------------------------------------------------------------------------- /LCD_1602_RUS-master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/LCD_1602_RUS-master/library.properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/README.md -------------------------------------------------------------------------------- /scheme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/scheme.jpg -------------------------------------------------------------------------------- /tachometer_LCD/tachometer_LCD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexGyver/Optical_Tachometer/HEAD/tachometer_LCD/tachometer_LCD.ino --------------------------------------------------------------------------------