Questions tagged [adafruit]

Adafruit Industries is an open-source hardware company founded by Limor Fried in 2005.

Adafruit Industries is an open-source hardware company founded by Limor Fried in 2005.

The company designs and manufactures a number of electronics products, sells a wide variety of electronics components, tools, and accessories via its online storefront, and produces a number of learning resources, including written tutorials, introductory videos for beginners, and the longest running live video electronics show on the internet.

The name Adafruit comes from Fried's online moniker "ladyada", itself an homage to computer science pioneer Ada Lovelace. The company's goal is to get more people involved in technology, science and engineering. Project kits are designed to deliver practical systems—not simply academic exercises—and to encourage more women into the field.

Source: https://en.wikipedia.org/wiki/Adafruit_Industries

Official website: https://www.adafruit.com/

367 questions
1
vote
0 answers

Error with Adafruit BNO0555 Orientation Sensor in newe Raspberry

I hab a Adafruit BNO055 Orientation sensor, and it ran well on my Raspi Pi 3 B+. I now did an upgrade to Pi 4, and installed all the libraries I had one the B+ 3. The only difference in my system setting now is, that I had Python 3.5 before and now…
haakla321
  • 11
  • 1
1
vote
1 answer

Arduino with adafruit RGBLCDShield Buttons weird behavior

I have the Arduino uno with rgb lcd shield. there is a very weird behavior with the buttons in one specific function. The function is called yes/no. It displays a message on the screen (working) the user can select answer yes/no with the buttons…
julian bechtold
  • 1,875
  • 2
  • 19
  • 49
1
vote
0 answers

Wake up Adafruit Feather 32u4 from sleep mode with external interrupt

I have an Adafruit Feather ATMega 32u4. I want to put it into sleep mode and wake it up with pressing a switch as an external interrupt. This is what I tried so far and which worked: switching a LED on and off with the switch putting the Adafruit…
Larsi
  • 11
  • 3
1
vote
1 answer

How to detect button press on Adafruit NRF52840

I am using a Feather Express NRF52840 and am trying to make use of the presupplied user button. Reading the pinout says: A tactile switch is provided for use in your projects, which is connected to P1.02 and is accessible in code as D7 in Arduino…
Seamus
  • 181
  • 1
  • 8
1
vote
1 answer

iOS says BLE Characteristic is not notifying

I am using an Adafruit Feather BLE module to tinker with. Along with it comes the AT Command set which I am using to create a custom Service and a Characteristic with it. I am using it the notify option. The iOS side code says the Characteristic is…
SFlow
  • 283
  • 3
  • 9
1
vote
2 answers

(Adafruit_Python_DHT - Raspberry Pi) in get_platform RuntimeError: Unknown platform

I have a Raspberry Pi 4 connected with a DHT22 sensor, and I want to read data from my sensor. So I installed the library Adafruit_DHT sudo pip3 install Adafruit_DHT then, I navigate to the directory Adafruit_Python_DHT/examples/, and then, since I…
Tms91
  • 3,456
  • 6
  • 40
  • 74
1
vote
0 answers

Exception 28 thrown on ESP8266-01 when connected to Adafruit MQTT and Telegram

The title is quite self-explanatory, but I will try to explain the issue further here so as to be more precise. My code runs on an ESP8266-01 connected to a fan and is used to control it through Telegram (with its own bot) and Adafruit MQTT, from…
GoTVm
  • 31
  • 6
1
vote
0 answers

Raspberry pi portaudio not working with python

I recently purchased the I2s microphone from adafruit and wired it to my raspberry Pi 3 Model A+. I want to use the module as the microphone but use the on board audio jack for the speaker.  Initially this worked with the terminal when recording…
SHEP AI
  • 51
  • 4
1
vote
0 answers

Reading DHT22 from flask murders gpio

I've hit a roadblock here and need some help... I have a raspberry pi 4 with a DHT22 temp/humid sensor and flask to show the data on a simple webpage (data is also written to an sqlite3 database but that doesn't seem relevant to the problem). The…
1
vote
0 answers

Trying to use Circuit Playground Express with iPad - CPLAYBOOT USB partition disappears due to "No valid file provider found"

I'm trying to connect my Circuit Playground Express (CPE) to my iPad using a Lightning to USB converter. The converter works fine with a standard USB flash drive. When I plug in the CPE the systme initially properly recognizes the drive label as…
Jeremy Woodland
  • 3,444
  • 5
  • 17
  • 25
1
vote
1 answer

synchronized bluetooth devices to play a pattern of vibrations simultaneously

Facts: Bluetooth 5.2 introduced Isochronous Channels (ISOC) capability. In the context of BLE, it means supporting (1) data transmissions that are time-sensitive and (2) synchronized rendering of these data streams across multiple receivers. I have…
1
vote
0 answers

How do you integrate Adafruit_GFX_AS with Adafruit_GFX and Adafruit_TFTLCD?

So, as the title suggests, I need help integrating the Adafruit_GFX_AS library with the Adafruit_GFX and Adafruit_TFTLCD libraries. Here's the code I have so far... #include #include #include…
xJusThatGuyx
  • 23
  • 1
  • 5
1
vote
1 answer

How to achieve Adafruit Feather M0 Sleep & Wake on External Interrupt using any Pin?

I am currently working on a low-power project using the Adafruit Feather M0 microprocessor. A requirement of my project is to be able to sleep the CPU and wake it again using an external interrupt triggered from the MPU6050 accelerometer. I have…
Philip Crocker
  • 107
  • 5
  • 18
1
vote
1 answer

Raspberry Pi - ZeroDivisionError: float division by zero - adafruit pca9685

I'm struggling with my Raspberry. The Terminal prints out that there's a float division by zero but I don't divide anything in the code. I already reseted the entire Pi and reinstalled everything. The first run after the reset was successful but…
Luis G
  • 57
  • 7
1
vote
2 answers

Rpi3 BMP180 Barometer Sensor Interface Problem

im currently working on a Barometer sensor on my Raspberry Pi 3. Unfortunately its not really working. My BMP180 Sensor is wired up as following: VIN -> 3V3 (1) GND -> GND (9) SCL -> GPIO3 (5) SDA -> GPIO2 (3) The cables and connections were double…