Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <GyverOLED.h>
- GyverOLED<SSD1306_128x64, OLED_BUFFER> oled;
- void setup() {
- oled.init();
- oled.clear();
- oled.update();
- oled.home();
- oled.setScale(3);
- oled.print("Здаров!");
- oled.update();
- oled.setCursorXY(10, 30); // курсор в (пиксель X, пиксель Y)
- oled.setScale(3);
- oled.print("Привет!");
- oled.update();
- }
- void loop() {
- // put your main code here, to run repeatedly:
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement