I have been playing with a Home Energy Monitor that I've had laying about for a few years and connected it up to my Raspberry Pi. Now I can used the LedBorg to give an indication of how much electricity we are using. I have written up how I achieved this on my blog (RaspberryPi Home Energy Monitor) giving a simple three level indicator but have now implemented a graduated scale that runs on boot up. Hope you find it interesting.
Fotosyn (@fotosynimaging, http://www.fotosyn.com) has made an App for iOS together with a Python server on the Raspberry Pi allowing you full control of your LedBorg from iOS:
My first project involving a LedBorg was to integrate it with a Airplay reciever for streaming music.
Whenever i start to play music the LedBorg will start to pulse in random colors. This is actually my first Python project ever. AirDisco will run as a Daemon and can be started,stopped or restarted from the cli.
piborg
Sun, 01/06/2013 - 12:24
Permalink
Ruby examples
b1nary has kindly shared the standard examples written for Ruby:
https://gist.github.com/f576d42067cc16d2684d
solyaris
Mon, 06/02/2014 - 16:15
Permalink
https://github.com/solyaris/ledborg
thanks b1nary!
I done something similar: very simple class & examples:
https://github.com/solyaris/ledborg
giorgio
giorgiorobino.com
Timothy Freeburn
Sun, 01/06/2013 - 13:42
Permalink
Network Controllable Mood Lighting - Vala
Ross Taylor's blog has a great use for the LedBorg and some code for Vala to do this with.
http://themightyug.blogspot.co.uk/2012/12/raspberry-pi-ledborg-vala-network.html
swinders
Mon, 01/21/2013 - 16:28
Permalink
LedBorg as a Home Energy Monitor indicator
I have been playing with a Home Energy Monitor that I've had laying about for a few years and connected it up to my Raspberry Pi. Now I can used the LedBorg to give an indication of how much electricity we are using. I have written up how I achieved this on my blog (RaspberryPi Home Energy Monitor) giving a simple three level indicator but have now implemented a graduated scale that runs on boot up. Hope you find it interesting.
bas@bloemsaat.com
Sun, 01/27/2013 - 18:20
Permalink
glowing ledborg
I made a little Perl script using only the standard /sys/class/gpio interface to make the ledborg gently glow on and off.
http://blog.bloemsaat.com/2013/01/27/glowing-leds-on-the-raspberry-pi-gp...
TiPunK
Tue, 04/09/2013 - 19:37
Permalink
PHP5 Examples
I shared the standard examples written for PHP:
https://gist.github.com/atierant/5346791
tofa
Sun, 04/28/2013 - 13:13
Permalink
LedBorg rpc service
A small rpc http service to control the LedBorg written in Go.
https://github.com/tofa84/goled
piborg
Tue, 04/30/2013 - 09:09
Permalink
Marco Tonoli has posted an
piborg
Tue, 05/28/2013 - 08:16
Permalink
LedBorg App for iOS and Raspberry Pi, by Fotosyn
View on vimeo
See the full blog here for more details.
Source is available here.
uhellstr
Sun, 08/04/2013 - 14:04
Permalink
AirDisco use LedBorg with Airplay
My first project involving a LedBorg was to integrate it with a Airplay reciever for streaming music.
Whenever i start to play music the LedBorg will start to pulse in random colors. This is actually my first Python project ever. AirDisco will run as a Daemon and can be started,stopped or restarted from the cli.
For more information see:
How to setup Airplay on your Raspberry Pi: http://lifehacker.com/5978594/turn-a-raspberry-pi-into-an-airplay-receiv...
For code with Ledborg see Github at: https://github.com/uhellstr/AirDisco.git
Kyle
Sat, 03/22/2014 - 14:35
Permalink
Ledborg Clock
Simple configurable leborg clock (using Python and crontab)
This clock is based on the Striking Clock and Westminster Quarters systems used by church clocks.
First a sequence will flash showing the quarter hour time.
1 x = quarter past hour.
2 x = half past hour.
3 x = quarter to the hour
4 x = on the hour
And then the hour number 1 - 12 will flash.
All colours, sequences and timings are easily configurable.
Installation
1: Make a directory in your /home/pi directory:
mkdir ledborg_clock
2: Move into the directory:
cd ledborg_clock
3: Download the zip file:
wget http://cathalstewart.co.uk/ledborg_clock.zip
4: Extract contents to this directory:
unzip ledborg_clock.zip
5: Chmod the python file:
chmod +x ledborg_clock.py
6: Open crontab for editing:
crontab -e
7: Add line to bottom of crontab:
*/15 * * * * python /home/pi/ledborg_clock/ledborg_clock.py
8: Save and exit:
Ctrl+X then press Y and Enter