-
Recent Posts
Recent Comments
Archives
- December 2021
- July 2021
- June 2021
- April 2021
- March 2021
- February 2021
- December 2020
- November 2020
- October 2020
- June 2020
- August 2019
- July 2018
- February 2018
- December 2017
- July 2017
- March 2017
- February 2017
- January 2017
- November 2016
- October 2016
- September 2016
- May 2016
- February 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- April 2015
- December 2014
- November 2014
- October 2014
Categories
Meta
Monthly Archives: December 2014
RPi – PiGPIOScope
An oscilloscope for the Pi, to check the states of the GPIO pins. Install the daemon on the Pi: http://abyz.co.uk/rpi/pigpio/download.html wget abyz.co.uk/rpi/pigpio/pigpio.zip unzip pigpio.zip cd PIGPIO make make install — Install the “viewer”, the scope.. on your computer: http://abyz.co.uk/rpi/pigpio/piscope.html wget … Continue reading
Posted in Uncategorized
Leave a comment
RPi – RGB LED strip WS2812B
I got a 30 RGB Led strip with WS2812B: http://www.tweaking4all.com/wp-content/uploads/2014/01/WS2812.pdf Its digital, it operates on 5V. Each led draws approximately 50 mA at 5 V with red, green, and blue at full brightness -> 1.5A 5v 2A power supply will … Continue reading
Posted in Uncategorized
Leave a comment
433MHz radio module with Raspberry
Using these instructions: http://shop.ninjablocks.com/blogs/how-to/7506204-adding-433-to-your-raspberry-pi Interesting comment: I follow this guide and use RPi_utils to receive and send RF code to my RF devices, but it didn’t work. Then adding this line to the codesend.cpp did the trick: mySwitch.setPulseLength(207); For Arduino: … Continue reading
Posted in Uncategorized
Leave a comment
Raspberry Pi – 433MHz radio
This: http://shop.ninjablocks.com/blogs/how-to/7506204-adding-433-to-your-raspberry-pi and: http://www.disk91.com/2013/technology/hardware/raspberry-pi-receive-433mhz-radio-signal/ if the receiver needs 5v, remember the nice 5v->3.3v circuit: http://www.disk91.com/2013/technology/hardware/oregon-scientific-sensors-with-raspberry-pi/ Basically just install wiringPi, then the 433utils: root@rpi02:~# git clone git://github.com/ninjablocks/433Utils.git Cloning into ‘433Utils’… remote: Counting objects: 129, done. remote: Total 129 (delta 0), … Continue reading
Posted in Uncategorized
Leave a comment