Skip to content

Latest commit

 

History

History
61 lines (33 loc) · 793 Bytes

servo-tessel-servo-module.md

File metadata and controls

61 lines (33 loc) · 793 Bytes

Servo - Tessel Servo Module

Run this example from the command line with:

node eg/servo-tessel-servo-module.js
const {Board, Servo} = require("johnny-five");
const Tessel = require("tessel-io");

const board = new Board({
  io: new Tessel()
});

board.on("ready", () => {
  console.log("Connected");

  // Initialize the servo instance
  const servo = new Servo({
    controller: "PCA9685",
    port: "A",
    address: 0x73,
    pin: 1,
  });

  servo.sweep();
});

 

License

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