Search found 4 matches

by alexchu
Fri May 29, 2020 8:18 am
Forum: Drivers for External Components
Topic: driver for RFD77402 TOF sensor
Replies: 0
Views: 2552

driver for RFD77402 TOF sensor

I wrote this driver for the RFD77402 TOF sensor, here is the link: https://github.com/ZIOCC/Qwiic_TOF_Module_RFD77402/tree/master/micropython I'm new to micropython. I learnt python for a few month, and I work at an electronic company, so I'm trying to use micropython to improve skills at micro-cont...
by alexchu
Thu Apr 23, 2020 4:15 am
Forum: Drivers for External Components
Topic: SSD1327 4-bit greyscale OLED displays
Replies: 10
Views: 38630

Re: SSD1327 4-bit greyscale OLED displays

That would be great! Cheers!
by alexchu
Wed Apr 22, 2020 4:30 am
Forum: Drivers for External Components
Topic: SSD1327 4-bit greyscale OLED displays
Replies: 10
Views: 38630

Re: SSD1327 4-bit greyscale OLED displays

It works perfectly! I only got a little trouble because of the "display off" code in the testing code, :) after I comment it, it works as expected. :lol: In the testing code display.text('f Line 6',0,5*8,15) display.text('g Line 7',0,5*8,15) //should be 6*8 display.text('h Line 8',0,7*8,15) Thanks a...
by alexchu
Tue Apr 21, 2020 9:18 am
Forum: Drivers for External Components
Topic: SSD1327 4-bit greyscale OLED displays
Replies: 10
Views: 38630

Re: SSD1327 4-bit greyscale OLED displays

Hello mcauser, Thanks for the ssd1327 library. I'm trying this library on my 1.5inch display which has 128x128 pixel resolution, it appears that the display format is not 100% right if I set the display resolution to 128x128. from machine import Pin,I2C import ssd1327 i2c = I2C(sda=Pin("Y8"), scl=Pi...