Search found 1642 matches: adafruit

Searched query: adafruit

by scruss
Mon Jul 18, 2022 3:34 am
Forum: Other Boards
Topic: Adafruit Feather M4 Express CAN
Replies: 3
Views: 23063

Re: Adafruit Feather M4 Express CAN

Not that I know of. It uses an ATSAME, and the nearest thing is the very early-stage ATSAMD port
by jimmo
Mon Jul 18, 2022 3:33 am
Forum: Other Boards
Topic: Adafruit Feather M4 Express CAN
Replies: 3
Views: 23063

Re: Adafruit Feather M4 Express CAN

ghilliesuit wrote:
Sun Jul 17, 2022 10:55 pm
Is there an operational uPy port UF2 out there for these?
This is a SAME51 board right? I'm not sure how hard it will be to extend the SAMD port to SAME.

Note: CAN is not currently supported on the samd port either.
by Andrew1234
Mon Jul 18, 2022 12:33 am
Forum: MicroPython pyboard
Topic: pyboard and Si5351
Replies: 2
Views: 22031

pyboard and Si5351

I am using a pyboard connected to an adafruit Si5351 eval board. I have gnd and 3v3 on the pyboard connected to GND and VIN of the Si5351 board. The I2C interface on the Si5351 board is connected to X9 (clock) and X10 (data) of the pyboard. ...
by ghilliesuit
Sun Jul 17, 2022 10:55 pm
Forum: Other Boards
Topic: Adafruit Feather M4 Express CAN
Replies: 3
Views: 23063

Adafruit Feather M4 Express CAN

Is there an operational uPy port UF2 out there for these?

I could use Circuit Python or C/C++, but I'm growing accustomed to uPy at this point. Hoping someone is sitting on this and is willing to share.
by jornamon
Thu Jul 14, 2022 7:05 pm
Forum: ESP32 boards
Topic: File write speed
Replies: 18
Views: 14717

Re: File write speed

... with 8MB os PSRAM). Three file storage systems were considered: the flash chip where the program is stored (flash(xip)), a XTSD chip from Adafruit (xtsd) https://www.adafruit.com/product/4899 which behaves like an SD card but without a removable card, and which appears to be faster that ...
by scruss
Thu Jul 14, 2022 3:33 pm
Forum: Raspberry Pi microcontroller boards
Topic: USB MIDI host
Replies: 3
Views: 23937

Re: USB MIDI host

... to do that. I'd love to be wrong, though. I have managed to connect a Akai LPK25 keyboard (USB MIDI out) to a Korg NTS-1 (3.5 mm MIDI in) using an Adafruit Trinket M0 (ATSAMD21) and this Arduino code: gdsports/midiuartusbh: MIDI DIN to MIDI USB Host Converter . It works better than I expected.
by scruss
Wed Jul 13, 2022 8:55 pm
Forum: General Discussion and Questions
Topic: Storing global configuration settings
Replies: 5
Views: 20807

Re: Storing global configuration settings

... different hardware, access methods like serial and I2C go out the window. I rather like - even if it stomps on a standard Python library name - Adafruit's " secrets.py " from CircuitPython. It's a very simple hash table: # This file is where you keep secret settings, passwords, and tokens! # ...
by scruss
Wed Jul 13, 2022 5:23 pm
Forum: General Discussion and Questions
Topic: Using a NodeMCU-mini with Thonny
Replies: 11
Views: 4127

Re: Using a NodeMCU-mini with Thonny

... are a couple of boards I've seen sold as "NodeMCU Mini": one looks like a regular NodeMCU board, the other more like the WEMOS Lolin D1 mini or Adafruit HUZZAH ESP8266 . Which one do you have?
by jimmo
Mon Jul 11, 2022 12:33 am
Forum: Drivers for External Components
Topic: AS7341 sensor
Replies: 3
Views: 24300

Re: AS7341 sensor

I'm looking for a Micropyton library for the AS7341 color sensor.... I'm sure you've seen https://github.com/adafruit/Adafruit_CircuitPython_AS7341/blob/main/adafruit_as7341.py It's not too difficult to re-write CPy drivers to MPy (Or perhaps you could try using CircuitPython ...
by ajevtic
Sat Jul 09, 2022 2:27 pm
Forum: Programs, Libraries and Tools
Topic: MAX31850 working, need help with internal temperature 1-Wire
Replies: 4
Views: 2116

MAX31850 working, need help with internal temperature 1-Wire

... MAX31850(15) while True: if max31850.presence() == 1: print("No device") else: print("Device present") print(max31850.getTemp()) sleep_ms(750) The Adafruit library is a bit complicated, so if anyone has code (C code also) for this that is not a library or a good step by step tutorial, that would ...