Search found 1642 matches: adafruit

Searched query: adafruit

by webtran
Tue Aug 09, 2022 3:16 am
Forum: Programs, Libraries and Tools
Topic: nano-gui - Trying Adafruit 2.9" E-Ink Tri-Color display with Esp32
Replies: 7
Views: 6776

Re: nano-gui - Trying Adafruit 2.9" E-Ink Tri-Color display with Esp32

Indeed it would be difficult to develop if you don't have access to a screen. Unfortunately I don't have the expertise to deal with devices at that level. Presently I can't even generate any type of error message, there is no activity on the screen. I can't even clear the screen, it looks like the f...
by scruss
Mon Aug 08, 2022 1:29 pm
Forum: Programs, Libraries and Tools
Topic: Flight simulator controls Micropython
Replies: 8
Views: 5255

Re: Flight simulator controls Micropython

... behaving like a USB input device. CircuitPython on a Raspberry Pi Pico should be able to work as a USB input device. I've previously used small Adafruit CircuitPython boards for HID input, and they were quite reliable for custom assistive input devices for people with disabilities.
by Lobo-T
Mon Aug 08, 2022 12:48 pm
Forum: Programs, Libraries and Tools
Topic: Flight simulator controls Micropython
Replies: 8
Views: 5255

Re: Flight simulator controls Micropython

Micropython doesn't really have that great USB support at the moment.
Circuitpython (https://circuitpython.org/) does have a HID library that supports gamepads: https://docs.circuitpython.org/projects ... ad-gamepad
by pythoncoder
Mon Aug 08, 2022 8:04 am
Forum: Programs, Libraries and Tools
Topic: nano-gui - Trying Adafruit 2.9" E-Ink Tri-Color display with Esp32
Replies: 7
Views: 6776

Re: nano-gui - Trying Adafruit 2.9" E-Ink Tri-Color display with Esp32

You may well be right. However I can't develop a driver for hardware which I don't possess. The ball is in your court, I'm afraid. If you can produce a driver I'll happily accept a PR.
by scruss
Sat Aug 06, 2022 7:35 pm
Forum: General Discussion and Questions
Topic: Frustrations with missing libraries?
Replies: 18
Views: 26394

Re: Frustrations with missing libraries?

... got no replies neither in MicroPython forum (https://forum.micropython.org/viewtopic.php?f=15&t=11783) nor in CircuitPython forum (https://forums.adafruit.com/viewtopic.php?f=60&t=189621). In fact, this thread is the first I've met, which complains about the current situation. Sorry that no-one ...
by aivarannamaa
Sat Aug 06, 2022 8:27 am
Forum: General Discussion and Questions
Topic: Frustrations with missing libraries?
Replies: 18
Views: 26394

Re: Frustrations with missing libraries?

... got no replies neither in MicroPython forum (https://forum.micropython.org/viewtopic.php?f=15&t=11783) nor in CircuitPython forum (https://forums.adafruit.com/viewtopic.php?f=60&t=189621). In fact, this thread is the first I've met, which complains about the current situation. There is https://github.com/micropython/micropython/pull/8914 ...
by Roberthh
Fri Aug 05, 2022 12:43 pm
Forum: Raspberry Pi microcontroller boards
Topic: si7021 [RESOLVED]
Replies: 7
Views: 3741

Re: si7021

I tried again with a Pico and both variants of the script here: https://github.com/robert-hh/SI7021
Using a Adafruit SI7021 sensor. Works fine.
by scruss
Wed Aug 03, 2022 11:13 pm
Forum: General Discussion and Questions
Topic: Frustrations with missing libraries?
Replies: 18
Views: 26394

Re: Frustrations with missing libraries?

... devices, Awesome MicroPython is your best resource. There are also many working-but-abandoned libraries for device interfacing on github under the adafruit/adafruit-micropython-* headings. I'm not sure if many of those are in Awesome MicroPython. Thonny is more likely to try to install a CPython ...
by VirtualWolf
Tue Aug 02, 2022 10:11 am
Forum: General Discussion and Questions
Topic: Maximum timeout period for uasyncio.sleep()?
Replies: 4
Views: 21583

Maximum timeout period for uasyncio.sleep()?

... I figured I'd just schedule a machine.reset() every week. I'm testing this on my spare FeatherS2 (the other devices that are in active use are Adafruit's HUZZAH32s) and the code in question at the bottom of main.py looks like this: [...snipped...] client = MQTTClient(config) async def weekly_reboot(): ...