Search found 1642 matches: adafruit

Searched query: adafruit

by TomBee
Tue Mar 14, 2023 5:39 pm
Forum: ESP32 boards
Topic: No boot.py unable to create python files
Replies: 4
Views: 45239

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> ...
by JeffT
Sun Dec 04, 2022 4:14 pm
Forum: Drivers for External Components
Topic: Drivers for EEPROM, FRAM and Flash chips
Replies: 15
Views: 71666

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
by Roberthh
Tue Sep 06, 2022 11:58 am
Forum: Raspberry Pi microcontroller boards
Topic: BMP280 / BME280 uPython
Replies: 45
Views: 349561

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 ...
by Rissy
Thu Sep 01, 2022 2:57 pm
Forum: Raspberry Pi microcontroller boards
Topic: BMP280 / BME280 uPython
Replies: 45
Views: 349561

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 ...
by scruss
Wed Aug 31, 2022 4:45 pm
Forum: General Discussion and Questions
Topic: problem with w2812b
Replies: 1
Views: 18907

Re: problem with w2812b

Spikey1973 wrote:
Wed Aug 31, 2022 2:01 pm
... the micropython based circuit python.
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
by Roberthh
Wed Aug 31, 2022 9:18 am
Forum: ESP32 boards
Topic: How boot mode in esp32 adafruit huzzah32
Replies: 1
Views: 19150

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.
by prem111
Wed Aug 31, 2022 9:05 am
Forum: ESP32 boards
Topic: How boot mode in esp32 adafruit huzzah32
Replies: 1
Views: 19150

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.
by Rissy
Sun Aug 28, 2022 7:48 am
Forum: Raspberry Pi microcontroller boards
Topic: BMP280 / BME280 uPython
Replies: 45
Views: 349561

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 ...
by beetle
Sat Aug 27, 2022 7:01 pm
Forum: Raspberry Pi microcontroller boards
Topic: BMP280 / BME280 uPython
Replies: 45
Views: 349561

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 ... 2c-devices
by Rissy
Sat Aug 27, 2022 5:56 pm
Forum: Raspberry Pi microcontroller boards
Topic: BMP280 / BME280 uPython
Replies: 45
Views: 349561

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 ...