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

14 lines
220 B
C
Raw Normal View History

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