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
10
votes
5 answers

cannot import name 'Beaglebone_Black_Driver' from 'Adafruit_DHT'

I'm running the latest raspberry pi os "Linux raspberrypi 5.4.51-v7l+ #1327 SMP Thu Jul 23 11:04:39 BST 2020 armv7l GNU/Linux" on a Raspberrypi 4B 4Gb. I've installed Python3 sudo apt-get install python3-dev python3-pip Updated setuptools, wheel and…
Flavio CF Oliveira
  • 5,235
  • 13
  • 40
  • 63
7
votes
4 answers

ESP32 direct port manipulation

Dear StackOverflowers, I am trying to use HX8357D 3.5" TFT from Adafruit (link) with an esp32. The TFT driver has two interfaces: SPI and 8-bit parallel. The provided library from Adafruit (link) only supports SPI on the esp32. I need to have higher…
Daan van Driel
  • 165
  • 1
  • 2
  • 9
7
votes
5 answers

How to disable 'interrupt watchdog' in ESP32 OR increase ISR time limit?

I am using ESP32 DEVKIT link and Adafruit VS1053 Codec + MicroSD Breakout - MP3/WAV/MIDI/OGG Play + Record - v4 link to record and then play the sound. I am using Arduino IDE for coding. I am facing an issue right now that the module uses hardware…
user263210
  • 417
  • 1
  • 5
  • 16
6
votes
1 answer

Traceback (most recent call last): Adafruit BME 280 Sensor

I have succesfully installed Adafruit_Gpio package and when i try to run the example file of the bme sensor provided by adafruit, i get the following error: Traceback (most recent call last): File "/home/rpi3/Adafruit_Python_BME280/example.py",…
5
votes
3 answers

Receive data from host computer using Circuit Python on Circuit Playground Express

I am using a Circuit Playground Express from Adafruit, and I'm programming it with Circuit Python. I want to read data transmitted from the computer to which the Circuit Playground Express is connected via USB. Using input() works fine, but I would…
francisaugusto
  • 1,077
  • 1
  • 12
  • 29
4
votes
3 answers

Arduino code won't upload

I'm working on a small weather station and yesterday everything was working well. This morning I changed some code and suddenly this came up when I wanted to upload the code to my Adafruit: java.io.IOException: Cannot run program…
BramAdafruit
  • 81
  • 2
  • 6
4
votes
2 answers

No module named 'Adafruit_DHT' on a Raspberry Pi Zero W running Raspbian using Python 3 with Berryconda3

I am using a Raspberry Pi Zero W where I connected a DHT11 Sensor from Adafruit. While setting up my Raspberry Pi I tried to install miniconda3 to manage my python packages. Somehow I could not install miniconda3 (I guess miniconda3 is not supported…
Heyufan
  • 41
  • 1
  • 4
4
votes
2 answers

Why "No NFC device found" with libnfc and PN532 SHIELD

I installed the libnfc on my ArchLinux and i would use it through my Adafruit PN532 arduino SHIELD. nfc-list returns me the message "No NFC device found". I have the following file in /etc/nfc/devices.d/pn532.conf that gives me nfc-list uses libnfc…
user5329034
  • 110
  • 1
  • 1
  • 8
4
votes
1 answer

Tkinter window is blank when running

When I run my tkinter code for measuring the temperature with Adafruit. When I run my code tkinter opens a window but nothing appears on the window. I have used tkinter a bit before and I have had what is supposed to appear appear but just not in…
Serkan Senyuz
  • 67
  • 1
  • 9
3
votes
1 answer

Python 3.7.3 SystemError: error return without exception set

I am trying to install libraries by Adafruit for MCP3008 AD converter. All installation process was successful, but after running a basic program, it shows me a error message. I am running this program on RPi4 with python 3.7.3. Here is my…
dejv_IT
  • 63
  • 7
3
votes
1 answer

Can't access gpio line with gpiod_line_request_output() on Adafruit FT232H

I am using an Adafruit Ft232H breakout to add GPIO ports to my Linux pc. Although I had some success to flash a led with libftdi and bitbang mode, I don't have the same luck with libgpiod because gpiod_line_request_output is failing. Some gpio…
Petross404
  • 177
  • 1
  • 12
3
votes
1 answer

I have a code to make a motor run then sleep, then run again, but can't get it to work

I need to make a motor run for an amount of time, sleep for an amount of time, then repeat making an infinite loop from adafruit_motorkit import MotorKit import time kit = MotorKit() while True: endtime = time.time() + 60 # runs motor for 60…
3
votes
1 answer

ImportError: No module named adafruit_motor

I just installed the Adafruit MotorKit library and I created a little bit of code like this: from adafruit_motorkit import MotorKit kit = MotorKit() But when I start the program with sudo command : sudo python motortest.py I had this : ImportError:…
ValentinDP
  • 323
  • 5
  • 14
3
votes
1 answer

Adafruit MMA8451 accelerometer giving my Raspberry Pi osError [Errno 121] Remote I/O error

I am running python3.5 on a Raspberry Pi 3 B+. With a display. My project is getting a simple accelerometer to print its values. I am following the following tutorial: I even added dtoverlay=spi1-3cs to the end of /boot/config.txt to activate…
Taha Arif
  • 31
  • 4
3
votes
2 answers

Adafruit raspberry-pi neopixel library throws error "ImportError: No module named _rpi_ws281x"

I ran into this problem when following the Adafruit Neopixel tutorial: https://learn.adafruit.com/neopixels-on-raspberry-pi/python-usage I double checked having all the requirements installed but still got an error: ImportError: No module named…
d-vine
  • 5,317
  • 3
  • 27
  • 25
1
2 3
24 25