Print Text to OLED Screen on Arduino

Sdílet
Vložit
  • čas přidán 24. 07. 2019
  • Code and diagrams can be found at: www.elithecomputerguy.com
    OLED Screens are great ways to display text from your Arduino Projects. You can change Font Sizes, positions and much more.
    Libraries Required for this Demonstration:
    Adafruit SSD1306
    Adafruit GFX
    Note: Remember to change the I2C address within the example sketch.
    Functional Parts in the Project:
    Arduino Uno - store.arduino.cc/usa/arduino-...
    128 x 64 OLED - amzn.to/2Mc8Fz2
    560 Piece Jumper Wire Kit - amzn.to/2MsCLjL
  • Věda a technologie

Komentáře • 27

  • @yingjack2516
    @yingjack2516 Před 2 lety +2

    literally, this is the best video for the beginner its clear its easy to understand,it shows the effect of it it basically explain everything fundamental. absolutely love it :D

  • @smbanandanand4566
    @smbanandanand4566 Před 2 lety

    Exactly what I was looking for; typed in the sketch and it worked like a charm using the Arduino Nano. Thanks a ton.

  • @wallaceshackleton1889
    @wallaceshackleton1889 Před 4 lety

    I found this really useful as a newbie to Arduino and OLCD devices but I have to say that you labour some points, like explaining in detail the second loop as it's just the same as the first loop and again with the comments about the small text size.
    On the whole a thumbs up from me, thanks for that little piece of education.

  • @frankfurtmesse
    @frankfurtmesse Před 4 lety

    Very simple - that´s what I needed for THE QUICK START !
    Tks

  • @MrOrangeman18
    @MrOrangeman18 Před 4 lety

    This is perfect and exactly what I’m after. Thank you for putting it in laymen’s terms. 👍🏻👍🏻👍🏻

  • @MobileTechPoint
    @MobileTechPoint Před 5 lety +3

    That's pretty cool my friend ❤️❤️

  • @nikhilpandey5164
    @nikhilpandey5164 Před 5 měsíci

    Best video with oled display goes to you love you

  • @ryanlongho2518
    @ryanlongho2518 Před 4 lety

    So helpful, thank you!

  • @drakethomas652
    @drakethomas652 Před 4 lety

    Just in case you're like me and can't access the program, I spent some time re-typing the program.
    Thank you to Eli the Computer Guy for slow scrolling, because of it, recreating the code was super easy.
    #include
    #include
    #include
    #define OLED_WIDTH 128
    #define OLED_HEIGHT 64
    #define OLED_ADDR 0x3C
    Adafruit_SSD1306 display(OLED_WIDTH, OLED_HEIGHT);
    void setup() {
    display.begin(SSD1306_SWITCHCAPVCC, OLED_ADDR);
    display.clearDisplay();
    display.setTextSize(2);
    display.setTextColor(WHITE);
    display.setCursor(0,0);
    display.println("Welcome");
    display.setTextSize(2);
    display.setTextColor(WHITE);
    display.setCursor(0,17);
    display.println("This is");
    display.println("a Splash");
    display.println("Screen");
    display.display();
    delay(5000);
    }
    void loop() {
    display.clearDisplay();
    display.setTextSize(2);
    display.setTextColor(WHITE);
    display.setCursor(0,0);
    display.println("Welcome");
    display.setTextSize(1);
    display.setTextColor(WHITE);
    display.setCursor(0,17);
    display.println("IP:192.168.1.1");
    display.println("Subnet:255.255.255.0");
    display.println("Gateway:192.168.1.1");
    display.println("DNS1 : 192.168.1.2");
    display.println("DNS2 : 192.168.1.3");

    display.display();
    }

  • @beatlessteve1010
    @beatlessteve1010 Před 3 lety

    Thank you sir for a great video and I would like to add that I was completely distracted by your awesome map in the background to which I was trying to look at the various names and locations on the map to see what has changed over the years, disappointing that there is a shelf right through South America, but perhaps you can do a video describing this map?

  • @dontawanna3324
    @dontawanna3324 Před 2 lety

    At 8:47, it seems like it should be "zero and zero" not "zero and seventeen". Otherwise great video and explanation!!

  • @PaulWellner
    @PaulWellner Před 2 lety

    Great video! Definitely a newb to Arduino and programming. Hoping you can point me to some info or video on how to print an analog input to the oled screen with a common text after it. Been searching the internet but cannot seem to locate it. I am reading a 0-100psi pressure transducer with my Arduino Uno, have got it working on my LCD screen but not my oled. The oled is working but need to understand how to print the analog input with just the text "PSI" after it. Have you done a video on something similar? Would certainly donate on your website if you can assist me. Thank you in advance :)

  • @aameen951
    @aameen951 Před 5 lety

    What is the biggest rgb screen that are available for arduino?

  • @andymouse
    @andymouse Před 5 lety

    Hi just found you and subscribed! are you the guy that's friends with Louis Rossmann pls?....also how do we access individual pixels ?...cheers

  • @Mots-mot
    @Mots-mot Před 3 lety

    How can we scroll the text vertically. i need to show the processes which are completed like we can see in Serial monitor of Arduino IDE

  • @BilalKhan-do9il
    @BilalKhan-do9il Před 3 lety

    Hey, i m calculating no of clicks the user will press , however i want to store that that,theredore im using eeprom but the problem is if user turns off the board at 25 click and switch it on again it still shows 0 ,i then put the eeprom command in void setup and it worked with 16*2 lcd ,but its not working with 1.3" i2c oled, can you please solve my problem!

  • @dyaa6
    @dyaa6 Před rokem +1

    I can't find the code!

  • @themarchhare1376
    @themarchhare1376 Před 5 lety +1

    I miss the more epigrammatic commentary on the sad state of affairs in America. Love you though, brother. I'll still thumbs up every video.

  • @jettaglnegro
    @jettaglnegro Před 11 měsíci

    Puedes invertir el texto como.modo espejo? 😊

  • @donaldhenke2750
    @donaldhenke2750 Před 4 lety

    can this work with a nano?

  • @oceancity1042
    @oceancity1042 Před 4 lety

    Hi, very good so far- have you or can you cover horizontal “scrolling text” on a OLED 128x32.
    Regards, Robert

  • @dontawanna3324
    @dontawanna3324 Před 2 lety

    Oops, at 8:57, not 8:47

  • @kawkab4822
    @kawkab4822 Před 5 lety

    950000 subscribers = 400 viwes !!!!