Search found 363 matches

by shaoziyang
Wed Mar 21, 2018 3:50 pm
Forum: General Discussion and Questions
Topic: MicroPyhton for i.MX RT
Replies: 1
Views: 2165

Re: MicroPyhton for i.MX RT

RT-Thread is porting i.MX RT now, but I don't know when it will be finished.
by shaoziyang
Thu Mar 15, 2018 2:22 am
Forum: MicroPython pyboard
Topic: Windows 10: Pyboard USB Drive not visible after installing REPL Drivers
Replies: 6
Views: 4367

Re: Windows 10: Pyboard USB Drive not visible after installing REPL Drivers

You may open disk manager to see if there is a disk without drive number.
by shaoziyang
Tue Mar 13, 2018 1:29 am
Forum: Development of MicroPython
Topic: ESP8266 _thread lib
Replies: 2
Views: 2287

Re: ESP8266 _thread lib

I think ram is not big enough.
by shaoziyang
Sat Feb 24, 2018 3:14 am
Forum: General Discussion and Questions
Topic: Framebuffer wrap text
Replies: 2
Views: 7896

Re: Framebuffer wrap text

It is great.
by shaoziyang
Mon Feb 19, 2018 5:41 am
Forum: micro:bit boards
Topic: micro:bit ToolBox
Replies: 0
Views: 3281

micro:bit ToolBox

I have develop microbit Toolbox, a small and powerful software for microbit, it can generate python code automatically. It is only support neopixel now, but will add more feature soon. You may using micro:bit ToolBox to generate Text or emoji data for microbit now. Full Color emoji demo tu.jpg micro...
by shaoziyang
Tue Feb 13, 2018 4:33 pm
Forum: ESP8266 boards
Topic: ESP8266/ESP32 neopixel 16x16 display drive
Replies: 1
Views: 2332

ESP8266/ESP32 neopixel 16x16 display drive

ESP8266/ESP32 neopixel 16x16 ws2812 display drive.
16x16.gif
16x16.gif (149.2 KiB) Viewed 2314 times
https://github.com/shaoziyang/mpy-lib/t ... /neo_16x16
by shaoziyang
Tue Feb 13, 2018 3:55 pm
Forum: micro:bit boards
Topic: micro:bit neopixel 16x16 display drive
Replies: 0
Views: 1852

micro:bit neopixel 16x16 display drive

micro:bit neopixel 16x16 display drive.
microbita.gif
microbita.gif (88.65 KiB) Viewed 1841 times
https://github.com/shaoziyang/microbit- ... /neo_16x16
neo16x16.jpg
neo16x16.jpg (54.19 KiB) Viewed 1841 times
by shaoziyang
Sun Feb 11, 2018 12:52 pm
Forum: micro:bit boards
Topic: microbit's BMP280 drive
Replies: 4
Views: 6960

Re: microbit's BMP280 drive

mcauser wrote:
Thu Feb 08, 2018 3:16 am
Which edge connector breakout board is that?
This edge connector breakout board is made by myself, it is small and easy to use, with color pin header.

Taobao link
1.jpg
1.jpg (118.91 KiB) Viewed 5493 times
2.jpg
2.jpg (104.21 KiB) Viewed 5493 times
3.jpg
3.jpg (54.42 KiB) Viewed 5493 times
by shaoziyang
Tue Feb 06, 2018 1:28 pm
Forum: micro:bit boards
Topic: microbit's BMP280 drive
Replies: 4
Views: 6960

Re: microbit's BMP280 drive

mpy-libs use MIT license, you may use it free.
by shaoziyang
Tue Feb 06, 2018 12:08 pm
Forum: micro:bit boards
Topic: microbit's BMP280 drive
Replies: 4
Views: 6960

microbit's BMP280 drive

https://github.com/shaoziyang/mpy-lib/t ... sor/bmp280

Code: Select all

from machine import I2C
import time

import bmp280

b = bmp280.BMP280(I2C(1))

while True:
    time.sleep_ms(500)
    b.get()
bmp280.jpg
bmp280.jpg (37.63 KiB) Viewed 6942 times
bmp280demo.jpg
bmp280demo.jpg (73.81 KiB) Viewed 6942 times