Tag: code sample

  • Arduino Switch Case Example

    I wanted to share something before I get into the example… if (you.likeMovies && you.areInterestedInMormons) { you.should.watch(‘http://www.hulu.com/watch/543302’); } else if (you.areInterestedInMormons) { you.should.read(‘http://www.mormon.org’); } Now, on to the example – I wrote a program a little while ago that translated (hard-coded) messages into light emissions on the Arduino. The program iterates through each character in…