Musings of an aging computer nerd hitting 0x32
Day 6, Trinity Leeds shopping centre

Day 5, Starbucks

Day 4, Kia
Note: the only link in this post is now broken. Left as originally published.

Day 3, Wilson's sore nose

Day 2, salt and pepper
Note: the only link in this post is now broken. Left as originally published.

Posh lamp stand

Office view Leeds

Ruby Script to send Twitter mentions over serial port
# Find your Twitter Mentions and send them to Arduino on Serial Portrequire “rubygems” require “twitter” #https://github.com/sferik/twitter for config details require “serialport” #http://rubygems.org/gems/serialport require “pp”
prevID = 0 puts “Setting Up Serial Port” myport = SerialPort.new("/dev/ttyACM0",“9600”.to_i) sleep(10) while true puts “Checking for mentions” latestMention = Twitter.mentions(:count => 1)[0] if prevID != latestMention.id msg = latestMention.user.screen_name + " " + latestMention.text puts “-” + msg bytes = myport.write(msg) puts “-” + bytes.to_s prevID = latestMention.id else puts “-No new updates” end sleep 60 end myport.close
Doodle’s Geek Monkey by Alastair Montgomery
Arduino LCD Message Scroller working
Here is the code (also at GitHub https://github.com/alastairhm/arduino.git)
// Auto scroll a message on the LCD and receive new messages via Serial port. // Alastair Montgomery (c) 2013 // Version 1.02 // include the library code: #include <LiquidCrystal.h> #include <string.h>// initialize the library with the numbers of the interface pins // below for SainSmart LCD Shield LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
