Search found 1642 matches: adafruit
Searched query: adafruit
- Tue Mar 14, 2023 5:39 pm
- Forum: ESP32 boards
- Topic: No boot.py unable to create python files
- Replies: 4
- Views: 74756
Re: No boot.py unable to create python files
I was able to use esptool to flash the ESP32-S3 Adafruit board 5477 with Micropython 1.19.1 from https://micropython.org/download/esp32spiram/ I am able to get to repl BUT the rshell runs into problems with the rsync command PS F:\Development\WorkspaceVSC> ...
- Sun Dec 04, 2022 4:14 pm
- Forum: Drivers for External Components
- Topic: Drivers for EEPROM, FRAM and Flash chips
- Replies: 15
- Views: 109443
Re: Drivers for EEPROM, FRAM and Flash chips
This is really neat, I just got to playing with the 2 Mbit Adafruit spi fram breakout and an ESP32 dev kit and had a FRAM file system in no time, ty for posting
- Tue Sep 06, 2022 11:58 am
- Forum: Raspberry Pi microcontroller boards
- Topic: BMP280 / BME280 uPython
- Replies: 45
- Views: 519117
Re: BMP280 / BME280 uPython
... tuple of three ints with (mode_hum, mode_temp, mode_pressure). # Authors: Paul Cunnane 2016, Peter Dahlebrg 2016 # # This module borrows from the Adafruit BME280 Python library. Original # Copyright notices are reproduced below. # # Those libraries were written for the Raspberry Pi. This modification ...
- Thu Sep 01, 2022 2:57 pm
- Forum: Raspberry Pi microcontroller boards
- Topic: BMP280 / BME280 uPython
- Replies: 45
- Views: 519117
Re: BMP280 / BME280 uPython
... above? This is the driver file i'm using in my Pico W: # Authors: Paul Cunnane 2016, Peter Dahlebrg 2016 # # This module borrows from the Adafruit BME280 Python library. Original # Copyright notices are reproduced below. # # Those libraries were written for the Raspberry Pi. This modification ...
- Wed Aug 31, 2022 4:45 pm
- Forum: General Discussion and Questions
- Topic: problem with w2812b
- Replies: 1
- Views: 34513
Re: problem with w2812b
It's probably best to ask on Adafruit's CircuitPython support forum, as the syntax and libraries are somewhat different to regular MicroPython.
Also, this forum is going away soon, so not many people are looking at it
- Wed Aug 31, 2022 9:18 am
- Forum: ESP32 boards
- Topic: How boot mode in esp32 adafruit huzzah32
- Replies: 1
- Views: 31962
Re: How boot mode in esp32 adafruit huzzah32
The feather board has the espressif boot loader logic. So esptool.py will switch the device into bootloader mode automaitically, Strange enough, GPIO0 seems not to be connected to the board's pin headers.
- Wed Aug 31, 2022 9:05 am
- Forum: ESP32 boards
- Topic: How boot mode in esp32 adafruit huzzah32
- Replies: 1
- Views: 31962
How boot mode in esp32 adafruit huzzah32
Hi, im have this evaluation boards:
https://learn.adafruit.com/adafruit-huz ... r/overview
Question is, how to go into boot mode to upload micropython firmware via esptool?
Thanks.
https://learn.adafruit.com/adafruit-huz ... r/overview
Question is, how to go into boot mode to upload micropython firmware via esptool?
Thanks.
- Sun Aug 28, 2022 7:48 am
- Forum: Raspberry Pi microcontroller boards
- Topic: BMP280 / BME280 uPython
- Replies: 45
- Views: 519117
Re: BMP280 / BME280 uPython
Can anyone give me some assistance with correcting this code where I need to to make it work? Have a peep at this: https://learn.adafruit.com/working-with-multiple-i2c-devices Ah right, so I basically already had it then. I just wrongly tried to separate the two address assignment statements ...
- Sat Aug 27, 2022 7:01 pm
- Forum: Raspberry Pi microcontroller boards
- Topic: BMP280 / BME280 uPython
- Replies: 45
- Views: 519117
Re: BMP280 / BME280 uPython
Have a peep at this:Can anyone give me some assistance with correcting this code where I need to to make it work?
https://learn.adafruit.com/working-with ... 2c-devices
- Sat Aug 27, 2022 5:56 pm
- Forum: Raspberry Pi microcontroller boards
- Topic: BMP280 / BME280 uPython
- Replies: 45
- Views: 519117
Re: BMP280 / BME280 uPython
... machine.lightsleep(value) value=0 wdt.feed() else: machine.lightsleep(value) #ok let's set the Pins #i2c # in bme280 i2c address was 0x76 put adafruit need to be 0x77 if bme_Enable and (address = 0x77): # I don't know how to read from two sensors at once, so this is just a note so you can ...