Raspberry Pi Pico OLED (SSH1106) display tutorial using Arduino

Поделиться
HTML-код
  • Опубликовано: 17 янв 2023
  • Raspberry Pi Pico OLED (SSH1106) display tutorial using Arduino
    In this video I am going to show you how to connect this 1.3” OLED display to a Raspberry Pi Pico board. I will also show you how to use it with Arduino and I will share with you 3 useful projects to help you get started and save you a lot of time. Let’s start.
    🛒 OLED: educ8s.tv/part/OLED13
    🛒 Raspberry Pi Pico: educ8s.tv/part/RaspberryPiPico
    🛒 DHT22 Sensor: educ8s.tv/part/DHT22
    💻 Code: educ8s.tv/raspberry-pi-pico-o...
    Join this channel to get access to perks:
    / @educ8s
    #arduino#educ8stv #raspberrypi
  • НаукаНаука

Комментарии • 16

  • @Educ8s
    @Educ8s  8 месяцев назад

    I hope you took away lots from this video. Let me know below!
    PS. Do you like quiz games? Check my popular FREE Android quiz game here: bit.ly/QuizOfKnowledge

  • @postamiklic4254
    @postamiklic4254 Год назад +1

    Working perfect! 😃

  • @ricka1939
    @ricka1939 Год назад

    Thanks for this, and all of your other videos!

    • @Educ8s
      @Educ8s  Год назад

      You are welcome!

  • @DiyintheGhetto
    @DiyintheGhetto Год назад

    Hello do you have a video on using the internal temperature of the pico processor itself?

    • @Educ8s
      @Educ8s  Год назад +1

      you can use the following line: float temperature = analogReadTemp();
      But have in mind it is not very accurate.

  • @UmutErhan
    @UmutErhan 4 месяца назад

    Last year I made a project with pico using ssd1306 in CircuitPython, last week I wanted to upgrade that project to add more menus, etc but I keep getting memory allocation failed errors so I can not add more I guess. Should I switch to another board with a bigger sram or should I rewrite my code in arduino? I know if I switch to arduino it will also be faster, because right now it's painfully slow to draw screen elements on CircuitPython. But would it also help with the memory?

  • @adityagautam4689
    @adityagautam4689 2 месяца назад

    sh1106 and ssh1106 are the same right?

  • @0124akash
    @0124akash 2 месяца назад

    Sir I need 2.5" display please share another number just like ssh1106 or ssd1306.

  • @Tims_Projects
    @Tims_Projects Год назад +1

    That's a nice display Nick.
    With my eyesight larger is better.
    As you mentioned not printing Greek, I looked at the GyverOLED lib, I see it is Greek, nice. 😁
    I also noticed that there are Greek characters in the font. "GyverOLED/src/charMap.h"
    The reason for the issue is Arduino only support the first 128 ASCII characters. Try to print any characters ASCII 32 (0x20) to ASCII 127 (0x7F) Arduino throughs a wobbly. (Its to save memory on small devices)
    So should you want to create an application using Arduino to display Greek (or other language) characters (only by the way), the trick is to replace the characters 32 to 128 (up to 127 Zero based) Characters, with Greek letters, then you have to make your self a table to know which English letter represents which Greek letter. (you can only use 128 letters/symbols)
    These may work at the moment with this font А Б В Г Д Е Ж З И Й К Л М Н О П Р С Т У Ф Х Ц Ч Ш Щ Ъ Ы .
    Hope that made some sense. I could be wrong of course, I seem to remember something along those lines.

    • @Educ8s
      @Educ8s  Год назад

      Thank you very much Tim for your time. I will try it, it makes sence.

    • @Tims_Projects
      @Tims_Projects Год назад

      @@Educ8s So sorry Nick I was half a sleep, I have had a sleep since. It is in Russian, I apologise for the mistake.
      Some characters look so similar to a Yorkshire man 😊.
      Any ways to what I said about Arduino, I looked at the library again. GyverOLED/src/GyverOLED.h about line 955. It shifts the ASCII values about.
      I think there is a function to print in Russian (another language).
      I think if the you was to branch the GIT library and change the Russian characters for Greek Characters, you could make a Greek version.