This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2016-07-14 04:16:18 +00:00
|
|
|
#ifndef PORTWRITE_H
|
|
|
|
#define PORTWRITE_H
|
2016-05-09 14:05:08 +00:00
|
|
|
#include <Arduino.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
/*
|
2016-07-14 04:16:18 +00:00
|
|
|
PortWrite is an abstract base class.
|
2016-05-09 14:05:08 +00:00
|
|
|
Port classes are the keybrd library's interface to microcontoller ports or I/O expander ports.
|
|
|
|
*/
|
2016-07-14 04:16:18 +00:00
|
|
|
class PortWrite
|
2016-05-09 14:05:08 +00:00
|
|
|
{
|
|
|
|
public:
|
2016-07-13 13:17:35 +00:00
|
|
|
virtual void write(const uint8_t pin, const bool level)=0;
|
2016-05-09 14:05:08 +00:00
|
|
|
};
|
|
|
|
#endif
|