GY-63_MS5611/libraries/FastShiftOut/FastShiftOut.h
2013-09-29 12:38:05 +02:00

44 lines
747 B
C++

//
// FILE: FastShiftOut.h
// AUTHOR: Rob Tillaart
// VERSION: 0.1.03
// PURPOSE: shiftout that implements the Print interface
// DATE: 2013-08-22
// URL:
//
// Released to the public domain
//
#ifndef FastShiftOut_h
#define FastShiftOut_h
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#define FASTSHIFTOUT_LIB_VERSION "0.1.03"
#include "Print.h"
class FastShiftOut : public Print
{
public:
FastShiftOut(uint8_t, uint8_t, uint8_t);
size_t write(uint8_t);
int read(void);
private:
uint8_t _bitorder;
int _value;
uint8_t _databit;
volatile uint8_t *_dataout;
uint8_t _clockbit;
volatile uint8_t *_clockout;
};
#endif
// -- END OF FILE --