SegLCDLib
Loading...
Searching...
No Matches
SegLCD_HT1622_Raw.h
Go to the documentation of this file.
1#ifndef SEGLCD_HT1622_RAW_H
2#define SEGLCD_HT1622_RAW_H
3
9#include <SegDriver_HT1622.h>
10
18 public:
19 SegLCD_HT1622_Raw(SegTransport3Wire& transport, uint8_t chipselect);
20 void writeRam(uint8_t data, uint8_t address = 0);
21 void writeRam(uint8_t *data, size_t length, uint8_t address = 0);
22};
23#endif
HT1622 LCD segment display driver.
Definition SegDriver_HT1622.h:12
Raw HT1622 LCD class for direct RAM access.
Definition SegLCD_HT1622_Raw.h:17
void writeRam(uint8_t data, uint8_t address=0)
Definition SegLCD_HT1622_Raw.cpp:10
Abstract 3-wire serial transport.
Definition SegTransport.h:18