برمجة شاشة OLED مع راسبيري باي || Raspberry Pi Pico - SSD1306 OLED MicroPython Library and Setup - DIY Channel3

DIY Channel3

Arduino│ESP8266│ESP32│Drone│Robot

برمجة شاشة OLED مع راسبيري باي || Raspberry Pi Pico - SSD1306 OLED MicroPython Library and Setup

مشاركة هذا

 








______________________________________________________


____________________________________________________________


from machine import Pin, I2C

from ssd1306 import SSD1306_I2C

import framebuf

import utime


WIDTH  = 128                                   

HEIGHT = 64                                         


i2c = I2C(0, scl=Pin(9), sda=Pin(8), freq=200000)      

print("I2C Address      : "+hex(i2c.scan()[0]).upper()) 

print("I2C Configuration: "+str(i2c))                  



oled = SSD1306_I2C(WIDTH, HEIGHT, i2c)                  



buffer = bytearray(b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00|?\x00\x01\x86@\x80\x01\x01\x80\x80\x01\x11\x88\x80\x01\x05\xa0\x80\x00\x83\xc1\x00\x00C\xe3\x00\x00~\xfc\x00\x00L'\x00\x00\x9c\x11\x00\x00\xbf\xfd\x00\x00\xe1\x87\x00\x01\xc1\x83\x80\x02A\x82@\x02A\x82@\x02\xc1\xc2@\x02\xf6>\xc0\x01\xfc=\x80\x01\x18\x18\x80\x01\x88\x10\x80\x00\x8c!\x00\x00\x87\xf1\x00\x00\x7f\xf6\x00\x008\x1c\x00\x00\x0c \x00\x00\x03\xc0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00")



fb = framebuf.FrameBuffer(buffer, 32, 32, framebuf.MONO_HLSB)


while True:

 

    oled.fill(0)


 

    oled.blit(fb, 96, 0)



    oled.text(" DIY CHANNEL",5,8)

    oled.text("BY:ABDELLATIF",10,35)

    oled.text("SUBSCRIBE",28,50)


 

    oled.show()

    utime.sleep(1)

    

   

No comments:

Post a Comment