Python examples for accessing Raspberry Pi GPIO, I2C, SPI, I2S, and PWM. GPIO (Digital I/O) Installation 1# Install RPi.GPIO 2sudo apt install python3-rpi.gpio 3 4# Or use pip 5pip3 install RPi.GPIO 6 7# Alternative: gpiozero (higher-level) 8pip3 install gpiozero Basic GPIO (RPi.GPIO) 1import RPi.GPIO as GPIO 2import …
Read More
I was building a Christmas set of spherical speakers just to familiarize myself with ADAU1401 Sigma DSP. And I wanted to add Bluetooth capability to the speakers so that they could receive sound data from an old Samsung Galaxy Note 10.1 in the kitchen. Granted, I have ordered some Bluetooth audio receivers, however, …
Read More