CincoBit
![]() | ![]() | ![]() | ![]() | ![]() |
Ultra low-cost, micro:bit inspired, educational board
- Overview
- Drivers
- Samples
- Projects
An ultra low-cost, micro:bit inspired, educational board.
Key features • 5x5 LED Matrix | Resources |
Function | Description |
---|---|
Init() | Initialize the display. Automatically called on power up. |
GetW() | Get display width: 5 |
GetH() | Get display height: 5 |
IsColor() | Returns 0. |
DVer() | This driver version. |
tip
See Graphics for available drawing functions.
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 a1[10] = {11,19,18,21,22,7,5,0,8,6} # first 5 for col, second 5 for row
Init()
clear(0)
fn Init()
gfxcfg(4, a1, 5,5,0) # 4: 5x5 type, 0: direct
fend
fn IsColor()
return 0
fend
fn GetW()
return 5
fend
fn GetH()
return 5
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!!
while 1
TextT("DUELink", 1, _x, 0)
Show()
_x= _x-1
if _x < -40
_x = 6
end
wait(100)
clear(0) # need to clear for next character
wend
from DUELink.DUELinkController import DUELinkController
import time
availablePort = DUELinkController.GetConnectionPort()
duelink = DUELinkController(availablePort)
x = 0
while True:
duelink.Graphics.TextT("DUELink", 1, x, 0)
duelink.Graphics.Show()
x -= 1
if x < -40:
x = 6
time.sleep(0.1)
duelink.Graphics.Clear(0)
//code
Coming Soon!
- Arduino
- RPI Pico
Coming Soon!
The Code!
Setup()
{
}
Loop()
{
}
Coming Soon!
Ordering Info
Description | Part Number | Price |
---|---|---|
Educational Microcomputer with 5x5 LED Matrix | GDL-MCCINCOBIT-A | $00.00 |