change lcd name

This commit is contained in:
Siwat Sirichai 2023-11-13 14:36:32 +07:00
parent 3ed34f9efd
commit c0854fd6df
3 changed files with 5 additions and 7 deletions

View File

@ -24,7 +24,7 @@
#include <WebServer.h>
#include <Update.h>
#endif
#include "lcd.hpp"
#include "espmega_iot_lcd.hpp"
#ifdef ENABLE_CLIMATE_MODULE
#include "ir_codes.hpp"

View File

@ -1,5 +1,5 @@
#include <user_code.hpp>
#include <lcd.hpp>
#include <espmega_iot_lcd.hpp>
void lcd_send_stop_bit()
{

View File

@ -1,11 +1,9 @@
#ifndef EMG_LCD_ENABLED
#include <Arduino.h>
#pragma once
#define EMG_LCD_ENABLED
#include <ESPMegaPRO.h>
void lcd_send_stop_bit();
void lcd_send_command(String command);
String lcd_wait_response();
void lcd_reset();
void lcd_init();
#endif
void lcd_init();