Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: COT1
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-10-22 12:05:12
- - Source Code generated by: Shadrack
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <Wire.h>
- #include <Adafruit_SSD1306.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Show numbers from 1 up to 10 endlessly */
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF I2C PINS *****/
- const uint8_t OLED_SSD1306OledDisplay_I2C_PIN_SDA_A4 = A4;
- const uint8_t OLED_SSD1306OledDisplay_I2C_PIN_SCL_A5 = A5;
- const uint8_t OLED_SSD1306OledDisplay_I2C_SLAVE_ADDRESS = 60;
- Adafruit_SSD1306 display(OLED_SSD1306OledDisplay_I2C_SLAVE_ADDRESS);
- void setup(void)
- {
- // Initialize the OLED display
- display.begin(SSD1306_SWITCHCAPVCC, OLED_SSD1306OledDisplay_I2C_PIN_SDA_A4, OLED_SSD1306OledDisplay_I2C_PIN_SCL_A5);
- display.clearDisplay();
- display.setTextColor(WHITE);
- display.setTextSize(2);
- display.setCursor(0, 0);
- }
- void loop(void)
- {
- // Show numbers from 1 to 10 endlessly
- for (int i = 1; i <= 10; i++) {
- display.clearDisplay();
- display.println(i);
- display.display();
- delay(1000);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement