Archived
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
keybrd/src/PortWriteInterface.h

18 lines
456 B
C
Raw Normal View History

2016-10-30 23:25:44 +00:00
#ifndef PORTWRITEINTERFACE_H
#define PORTWRITEINTERFACE_H
#include <Arduino.h>
#include <inttypes.h>
/*
Port classes are the keybrd library's interface to MOSI shift registers i.e. Port_ShiftRegs
Port classes that can read & write, inherit from PortInterface.
Port classes that can only write, inherit from PortWriteInterface.
*/
2016-10-30 23:25:44 +00:00
class PortWriteInterface
{
public:
virtual void write(const uint8_t pin, const bool pinLogicLevel)=0;
};
#endif