44 lines
873 B
C
Raw Normal View History

2021-05-30 14:25:11 +02:00
#pragma once
//
// FILE: ShiftInSlow.h
// AUTHOR: Rob Tillaart
2023-02-21 13:11:46 +01:00
// VERSION: 0.1.3
2021-05-30 14:25:11 +02:00
// PURPOSE: Arduino library for shiftIn with build-in delay
// DATE: 2021-05-11
// URL: https://github.com/RobTillaart/ShiftInSlow
#include "Arduino.h"
2023-02-21 13:11:46 +01:00
#define SHIFTINSLOW_LIB_VERSION (F("0.1.3"))
2021-05-30 14:25:11 +02:00
class ShiftInSlow
{
public:
2022-11-24 12:49:27 +01:00
// bitOrder = { LSBFIRST, MSBFIRST }; defined in Arduino.h.
2021-05-30 14:25:11 +02:00
ShiftInSlow(const uint8_t dataPin, const uint8_t clockPin, const uint8_t bitOrder = LSBFIRST);
2023-02-21 13:11:46 +01:00
int read();
int lastRead();
2021-05-30 14:25:11 +02:00
2023-02-21 13:11:46 +01:00
bool setBitOrder(const uint8_t bitOrder = LSBFIRST);
uint8_t getBitOrder();
2021-05-30 14:25:11 +02:00
2023-02-21 13:11:46 +01:00
void setDelay(uint16_t microseconds = 0);
uint16_t getDelay();
2021-05-30 14:25:11 +02:00
private:
2023-02-21 13:11:46 +01:00
uint8_t _clockPin = 0;
2021-05-30 14:25:11 +02:00
uint8_t _dataPin = 0;
uint8_t _bitOrder = LSBFIRST;
uint16_t _delay = 0;
uint8_t _value = 0;
};
2021-12-28 11:35:20 +01:00
2023-02-21 13:11:46 +01:00
// -- END OF FILE --
2021-12-28 11:35:20 +01:00