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
2017-03-02 08:18:07 +01:00

16 lines
264 B
C++

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