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/PortMCP23S17.h

13 lines
250 B
C++

#ifndef PORTMCP23S17_H
#define PORTMCP23S17_H
#include <Arduino.h>
#include <inttypes.h>
#include <SPI.h>
class PortMCP23S17
{
protected:
uint8_t transfer(const uint8_t command, const uint8_t registerAddr, const uint8_t data);
};
#endif