PixoBit
![]() | ![]() | ![]() | ![]() | ![]() |
micro:bit form factor with 128x64 OLED 0.96" display
- Overview
- Drivers
- Samples
- Projects
micro:bit form factor with 128x64 OLED 0.96" display
Key features • 128x64 OLED 0.96" display | Resources |
Function | Description |
---|---|
Init() | Initialize the display. Automatically called on power up. |
GetW() | Get display width: 128 |
GetH() | Get display height: 64 |
IsColor() | Returns 0. |
DVer() | This driver version. |
The Code!
Modules ship with this script preloaded. Use Console to reload or modify the drivers. Additionally, some languages, such as Python, include DUELink.Engine.Record()
for recording scripts directly from the host.
dim b1[2]
fn SendCmd(c)
b1[0] = 0
b1[1] = c
i2cwr(0x3c,b1,[])
fend
Init()
show()
fn Init()
dwrite(11,1) # reset pin
# config I2C bus with 400Kz
i2ccfg(400)
Wait(20)
GfxCfg(1,{0x3C},128,64, 1)
SendCmd(0xAE):SendCmd(0x00):SendCmd(0x10)
SendCmd(0x40):SendCmd(0x81):SendCmd(0xCF)
SendCmd(0xA1):SendCmd(0xA6):SendCmd(0xA8)
SendCmd(0x3F):SendCmd(0xD3):SendCmd(0x00)
SendCmd(0xD5):SendCmd(0x80):SendCmd(0xD9)
SendCmd(0xF1):SendCmd(0xDA):SendCmd(0x12)
SendCmd(0xDB):SendCmd(0x40):SendCmd(0x8D)
SendCmd(0x14):SendCmd(0xAF):SendCmd(0xC8)
SendCmd(0x20):SendCmd(0x00):SendCmd(0x21)
SendCmd(0):SendCmd(128-1)
SendCmd(0x22):SendCmd(0):SendCmd(7)
fend
fn IsColor()
return 0
fend
fn GetW()
return 128
fend
fn GetH()
return 64
fend
fn DVer()
return 0.1
fend
##### User Code Starts Here #####
- Script
- Python
- JavaScript
Use Console to modify the default driver by adding this sample.
# Append this code at the bottom of the script, right after the driver.
# You MUST keep the driver code!!
_x = 50
_d = 10
_w = GetW()
while 1
circle(1,_x,GetH()/2,10)
Show()
_x=_x+_d
if (_x > _w || _x <0)
_d = _d * -1
Clear(0)
end
wait(10)
wend
from DUELink.DUELinkController import DUELinkController
import time
availablePort = DUELinkController.GetConnectionPort()
duelink = DUELinkController(availablePort)
x = 50
d = 10
width = int(float(duelink.Engine.Run("getw()")))
height = int(float(duelink.Engine.Run("geth()")))
while True:
duelink.Graphics.Circle(1, x, height//2, 10)
duelink.Graphics.Show()
x = x + d
if (x > width or x < 0):
d = d * -1
duelink.Graphics.Clear(0)
time.sleep(0.1)
//code
Coming soon!
Ordering Info
Description | Part Number | Price |
---|---|---|
Pixobit | GDL-MCPIXOBIT-A | $00.00 |