Search found 1642 matches: adafruit

Searched query: adafruit

by mcauser
Tue Sep 25, 2018 2:59 am
Forum: Drivers for External Components
Topic: 64x32 led matrix driver
Replies: 5
Views: 11109

Re: 64x32 led matrix driver

... might be a good solution. There are 2 types of RGB strips you should investigate. WS2812 aka Neopixel and APA106 aka Dotstar strips. https://learn.adafruit.com/adafruit-neopixel-uberguide/the-magic-of-neopixels https://learn.adafruit.com/adafruit-dotstar-leds/overview Neopixel have strict timing ...
by pythoncoder
Mon Sep 24, 2018 9:14 am
Forum: Drivers for External Components
Topic: Drivers for various displays and portable GUI
Replies: 18
Views: 19197

Cheaper options

I should add that Adafruit colour OLED displays are expensive. I usually pay their prices to support the work they do and because their quality, documentation and code is great. But cheap Chinese displays are available. They are inevitably something of an unknown quantity; the one I tried worked fine.
by pythoncoder
Mon Sep 24, 2018 8:21 am
Forum: Drivers for External Components
Topic: Drivers for various displays and portable GUI
Replies: 18
Views: 19197

Drivers for various displays and portable GUI

... with touch overlay should be used, with a GUI available here or for large 4.3" SSD1963 displays this one . Display drivers are provided for Adafruit 1.5, 1.27 and 0.96 inch colour OLED displays. There is also the official SSD1306 driver for monochrome OLED displays. These may be used: Alone ...
by kdb424
Sun Sep 23, 2018 9:28 pm
Forum: General Discussion and Questions
Topic: Issues with volume keys on HID
Replies: 0
Views: 1367

Issues with volume keys on HID

I've managed to get a full keyboard working on my pyboard by sending bytestrings on my pyboard using pyb.hid. I however noticed that unlike circuitpython, we do not have a adafruit_hid.consumer_control library, which contains keys like volume. I have been searching around on how it works internally,...
by s-light
Sun Sep 09, 2018 9:20 am
Forum: Drivers for External Components
Topic: VL53L1X ToF distance sensor - adapting to micropython
Replies: 19
Views: 64375

Re: VL53L1X ToF distance sensor - adapting to micropython

... jet looked at what it needs to get this ported to MicroPython.. https://github.com/pimoroni/vl53l1x-python and also what it takes to port it to Adafruit CircuitPython - i think they have a different hardware-abstraction layer - but have not read the Design Guide (https://circuitpython.readthedocs.io/en/3.x/docs/design_guide.html) ...
by OutoftheBOTS_
Sat Sep 08, 2018 12:01 am
Forum: ESP32 boards
Topic: Differences between Micropython ports for ESP32 and ESP8266
Replies: 35
Views: 173832

Re: Differences between Micropython ports for ESP32 and ESP8266

... ESP32 is the fact I have only encountered 1 commonly used port of MP for ESP8266 where as there is many commonly used ports for ESP32 : Official, Adafruit, Laboris, MStasck and a few other less commonly used ports. To make things worse is many of these ports don't have much docs. Real life use ...
by pythoncoder
Fri Sep 07, 2018 9:46 am
Forum: Drivers for External Components
Topic: Displays with driver subclassed from framebuf
Replies: 30
Views: 20442

Colour OLED display drivers

I've posted drivers for SSD1331 displays (Adafruit 0.96 inch OLED) and SSD1351 (Adafruit 1.27 inch and 1.5 inch) colour OLED's). These are based on framebuf and use 8-bit colour to minimise the buffer size. Buffer sizes are 6144, 12288 and 16384 ...
by pythoncoder
Mon Sep 03, 2018 5:13 pm
Forum: General Discussion and Questions
Topic: LCD UI - M5Stack and the ILI9341
Replies: 11
Views: 11482

Re: LCD UI - M5Stack and the ILI9341

... I see the nano-gui as being quite a minimal interface for small displays only. The biggest I plan to support is the 128*128 pixel 1.5 inch Adafruit colour OLED . To minimise the size of the framebuf I intend to support 8-bit colour only (rrrgggbb) with colours being mapped to the device's ...
by mattyt
Mon Sep 03, 2018 1:18 pm
Forum: General Discussion and Questions
Topic: LCD UI - M5Stack and the ILI9341
Replies: 11
Views: 11482

Re: LCD UI - M5Stack and the ILI9341

... a subset of problems map well to grids. There is some work underway to use a similar approach for displaying graphics in CircuitPython done by Adafruit. I think the general idea of using tiles and sprites to save memory and help you organize your interface is very promising. I agree and look ...
by deshipu
Mon Sep 03, 2018 10:20 am
Forum: General Discussion and Questions
Topic: LCD UI - M5Stack and the ILI9341
Replies: 11
Views: 11482

Re: LCD UI - M5Stack and the ILI9341

... a simple "bouncing ball" demo so far on it. There is some work underway to use a similar approach for displaying graphics in CircuitPython done by Adafruit. I think the general idea of using tiles and sprites to save memory and help you organize your interface is very promising.