This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
Distancer/MyLcd.h

16 lines
264 B
C
Raw Normal View History

#pragma once
#include "LcdShiftReg.h"
#include "DeviceLib/Lcd.h"
class MyLcd : public Lcd
{
private:
LcdShiftReg m_lcdShiftReg;
private:
2017-03-02 07:18:07 +00:00
void execute(uint8_t data, bool RS);
virtual void execute(const Command &cmd, bool RS, uint16_t delay_us) override;
};