TEA5767 FM radio digital tuner with Raspberry Pi 2 (part 2 of 3)
Part 1 of 3 Software preparation. 1. Enable Raspberry Pi 2 i2c module: sudo raspi-config Go to advace menu, and enable i2c module and load on boot 2. Enable and Load some drivers. sudo nano /etc/modules Add i2c-bcm2708 and i2c-dev at the bottom of the file, then save it and…
TEA5767 FM radio digital tuner with Raspberry Pi 2 (part 1 of 3)
TEA5767 is an interesting FM radio receiver module that works with micro-controllers like Arduino or Raspberry Pi. Usefull application using this little module could be: Desktop FM radio, Internet FM radio, and voice command transceiver. Some of the modules come with a breakout board which includes antenna socket, stereo out socket…
How to drive 2 DC motors with Raspberry Pi 2 GPIO and DRV8833 chip
DRV8833 sells for around $6, but it performs beyond expectation without all the flufy hardware surrounding your typical motor controller extension board or hat. With stand-up pins, it could sit nicely on a breadboard or permanent proto-board. What you need in this setup: Raspberry Pi 2 SD Card running Raspbian Power…
Object detection based on color (colour) with Python 3, OpenCV 3, Pi Camera, and Raspberry Pi 2
This Python 3 code will mark a blue object in the screen, mark it with a red dot and each time the object moves, the red dot will follow it. The application of this could range from robot vision to automatic video camera. Feel free to adjust the treshold setting…
How to Install OpenCV 3 (Open Computer Vision) with Python 3 on Raspberry Pi 2
OpenCV is amazing project to give Raspberry Pi to interact with pictures, videos, and cameras. You can build so many interesting apps such as face recognition, color detection, image processing and manipulation, or give your robot some sight to avoid walls. OpenCV 3 will officialy support Python 3. At the…