Giter Site home page Giter Site logo

gspquad's Introduction

gspquad

introduction

gspquad is a simplified implementation of a quadrature encoder interface, allowing similar implementation style to other similar gsp classes when using arduino.

how to use

It is requried to instantiate gspquad with 4 parameters:

  1. Quad pin 1
  2. Quad pin 2
  3. Callback for Incremental turn (turn right)
  4. Callback fro Decremental turn (turn left) ...or
  5. Stream output string for Increments
  6. Stream output string for Decrements

For instance:

gspQuad myEncoder(1,2,"GoingUp","GoingDown");

or...

int pos=0;
void showPos(){Serial.println(pos);}

void doUp(){pos++;showPos()};
void doDown(){pos--;showPos();};

gspQuad myOtherEncoder(1,2,doUp,doDown);

other requirements

  1. include the library header file <gspquad.h>
  2. include the library dependencies in the project: gspquad,gspgrouped,functional-avr

The only other requirements for code is to "register" each Quad instance with gspgrouped in the setup function and to then start the checking process by calling gspQuad::startCheckAll().

This checking process is slightly different with gspQuad as we use interrupts to drive the encoder so we don't check it in the loop function.

void setup() {
  gspGrouped::register_instance(&myEncoder);
  gspGrouped::register_instance(&myOtherEncoder);
  gspQuad::startCheckAll();
}
void loop() {
}

gspquad's People

Contributors

edwar64896 avatar

Stargazers

 avatar

Watchers

 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.