Архивировано
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
keybrd/src/Port_ShiftRegs.h

23 строки
638 B
C
Исходник Обычный вид История

2016-10-30 23:25:44 +00:00
#ifndef PORT_SHIFTREGS_H
#define PORT_SHIFTREGS_H
#include <Arduino.h>
#include <inttypes.h>
#include <SPI.h>
#include <PortWriteInterface.h>
/* Port_ShiftRegs
slaveSelect is controller-pin number connected to shift register RCLK pin a.k.a. SS or ST
2016-10-30 23:25:44 +00:00
*/
class Port_ShiftRegs : public PortWriteInterface
{
private:
const uint8_t slaveSelect; //controller-pin number
2016-10-30 23:25:44 +00:00
uint8_t outputVal; //bit pattern for LEDs
public:
Port_ShiftRegs(const uint8_t slaveSelect);
void begin();
void setLow(const uint8_t pin);
void setHigh(const uint8_t pin);
2016-10-30 23:25:44 +00:00
};
#endif