Thanks, these are great exercises to get to know the Tessel.
I just got my first LED blinking via the GPIO:
var tessel = require('tessel'); // import tessel
var gpio = tessel.port['A']; // select the GPIO port
// Toggle an LED every 200ms
(function blink (value) {
gpio.digital[2].write(value);
setTimeout(blink, 200, !value);
})(true)
`
and then
tessel run example.js
`
Let's see if I can drive the 74HC595 shift register with 3V.