change lcd name
This commit is contained in:
parent
3ed34f9efd
commit
c0854fd6df
|
@ -24,7 +24,7 @@
|
||||||
#include <WebServer.h>
|
#include <WebServer.h>
|
||||||
#include <Update.h>
|
#include <Update.h>
|
||||||
#endif
|
#endif
|
||||||
#include "lcd.hpp"
|
#include "espmega_iot_lcd.hpp"
|
||||||
|
|
||||||
#ifdef ENABLE_CLIMATE_MODULE
|
#ifdef ENABLE_CLIMATE_MODULE
|
||||||
#include "ir_codes.hpp"
|
#include "ir_codes.hpp"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include <user_code.hpp>
|
#include <user_code.hpp>
|
||||||
#include <lcd.hpp>
|
#include <espmega_iot_lcd.hpp>
|
||||||
|
|
||||||
void lcd_send_stop_bit()
|
void lcd_send_stop_bit()
|
||||||
{
|
{
|
|
@ -1,11 +1,9 @@
|
||||||
#ifndef EMG_LCD_ENABLED
|
#pragma once
|
||||||
#include <Arduino.h>
|
|
||||||
|
|
||||||
#define EMG_LCD_ENABLED
|
#include <ESPMegaPRO.h>
|
||||||
|
|
||||||
void lcd_send_stop_bit();
|
void lcd_send_stop_bit();
|
||||||
void lcd_send_command(String command);
|
void lcd_send_command(String command);
|
||||||
String lcd_wait_response();
|
String lcd_wait_response();
|
||||||
void lcd_reset();
|
void lcd_reset();
|
||||||
void lcd_init();
|
void lcd_init();
|
||||||
#endif
|
|
Loading…
Reference in New Issue