Giter Club home page Giter Club logo

mathan-mcp23017-i2c's Introduction

yad2xx extension for MCP23017 using I2C

This is Java API extension to yad2xx. 16 GPIO pins can be controlled as input or output.

// configure an I2C instance
I2C device;
// create MCP23017 instance
MCP23017 mcp = new MCP23017(device);
// register some pins as output
mcp.setupOutput(Pin.GPIO_B_0);
mcp.setupOutput(Pin.GPIO_B_2);
mcp.setupOutput(Pin.GPIO_B_1);
mcp.setupOutput(Pin.GPIO_B_3);
mcp.setupOutput(Pin.GPIO_B_4);
mcp.setupOutput(Pin.GPIO_B_5);
// register some pins as input
mcp.setupInput(Pin.GPIO_A_6);
mcp.setupInput(Pin.GPIO_A_7);
// set an output pin to ON
mcp.on(Pin.GPIO_B_0);
// check if input on pin
if (mcp.isSet(Pin.GPIO_A_6)) {
  ...
}

yad2xx linking

This project is using the yad2xx library released under LGPL3. The dynamic linking is done using Maven dependency mechanism. To change the linking to a different version of the library just change the dependency. A copy of the library binary and license is available in the lib folder. A source artifact has not been provided by the publisher of the library. You can find the source code on the SourceForge project page of yad2xx.

Chip details

The datasheet of MCP23017 can be found in the doc folder.

mathan-mcp23017-i2c's People

Contributors

reallyinsane avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.