Expander - PCF8575

Using an PCF8575 Expander as a Virtual Board (SparkFun I2C Expander Breakout - PCF8575)

Breadboard for "Expander - PCF8575"

docs/breadboard/expander-PCF8575.png

Fritzing diagram: docs/breadboard/expander-PCF8575.fzz

 

Run with:

node eg/expander-PCF8575.js
var five = require("johnny-five");
var board = new five.Board();

board.on("ready", function() {
  var virtual = new five.Board.Virtual(
    new five.Expander("PCF8575")
  );

  var leds = new five.Leds(
    Array.from({ length: 8 }, function(_, i) {
      return new five.Led({ pin: i * 2, board: virtual });
    })
  );

  leds.on();

  this.repl.inject({
    leds: leds
  });
});


 

License

Copyright (c) 2012, 2013, 2014 Rick Waldron waldron.rick@gmail.com Licensed under the MIT license. Copyright (c) 2014, 2015 The Johnny-Five Contributors Licensed under the MIT license.