26#ifndef PART_LCD_PCD8544_H
27#define PART_LCD_PCD8544_H
29#include "../devices/lcd_pcd8544.h"
30#include "../lib/part.h"
32#define PART_LCD_PCD8544_Name "LCD pcd8544"
36 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
40 void DrawOutput(
const unsigned int index)
override;
48 unsigned short GetInputId(
char* name)
override;
52 unsigned char input_pins[5];
Board class.
Definition board.h:111
Definition output_LCD_pcd8544.h:34
void PostProcess(void) override
Called every end of CPU process.
Definition output_LCD_pcd8544.cc:203
void ConfigurePropertiesWindow(void) override
Called to configure the properties window.
Definition output_LCD_pcd8544.cc:177
void DrawOutput(const unsigned int index) override
Called to draw every output.
Definition output_LCD_pcd8544.cc:69
std::string WritePreferences(void) override
Called to save part preferences in configuration file.
Definition output_LCD_pcd8544.cc:162
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition output_LCD_pcd8544.cc:131
std::string GetAboutInfo(void) override
Return the about information of part.
Definition output_LCD_pcd8544.h:36
void ReadPreferences(std::string value) override
Called whe configuration file load preferences.
Definition output_LCD_pcd8544.cc:171
void ReadPropertiesWindow(void) override
Called when properties window close.
Definition output_LCD_pcd8544.cc:185
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition output_LCD_pcd8544.cc:136
void Process(void) override
Called every CPU step.
Definition output_LCD_pcd8544.cc:193
void LoadPartImage(void) override
Load Part Image.
Definition output_LCD_pcd8544.cc:208
PART class.
Definition part.h:49
Definition lcd_pcd8544.h:44