#pragma once // // FILE: ShiftInSlow.h // AUTHOR: Rob Tillaart // VERSION: 0.1.0 // PURPOSE: Arduino library for shiftIn with build-in delay // DATE: 2021-05-11 // URL: https://github.com/RobTillaart/ShiftInSlow // #include "Arduino.h" #define SHIFTINSLOW_LIB_VERSION (F("0.1.0")) class ShiftInSlow { public: // bitorder = { LSBFIRST, MSBFIRST }; ShiftInSlow(const uint8_t dataPin, const uint8_t clockPin, const uint8_t bitOrder = LSBFIRST); int read(void); int lastRead(void) { return _value; }; bool setBitOrder(const uint8_t bitOrder); uint8_t getBitOrder(void) { return _bitOrder; }; void setDelay(uint16_t d) { _delay = d; }; uint16_t getDelay() { return _delay; }; private: uint8_t _clockPin = 0 ; uint8_t _dataPin = 0; uint8_t _bitOrder = LSBFIRST; uint16_t _delay = 0; uint8_t _value = 0; }; // -- END OF FILE --