Compare commits

..

No commits in common. "94bf181692ee45b554b5a98137935d14f185e5c8" and "4493b85542beb6b3967d1a94fcb46ca29dbeefad" have entirely different histories.

5 changed files with 49 additions and 88 deletions

View File

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

View File

@ -1,73 +0,0 @@
#include <user_code.hpp>
#include <espmega_iot_lcd.hpp>
void lcd_send_stop_bit()
{
#ifdef ENABLE_INTERNAL_LCD
Serial.write(0xFF);
Serial.write(0xFF);
Serial.write(0xFF);
#endif
}
void lcd_send_command(String command)
{
#ifdef ENABLE_INTERNAL_LCD
lcd_send_stop_bit();
Serial.print(command);
lcd_send_stop_bit();
#endif
}
void lcd_reset()
{
#ifdef ENABLE_INTERNAL_LCD
lcd_send_stop_bit();
lcd_send_command("rest");
lcd_send_stop_bit();
#endif
}
void lcd_init()
{
#ifdef ENABLE_INTERNAL_LCD
lcd_reset();
delay(750);
#endif
}
bool lcd_upload_start(size_t size)
{
Serial.begin(115200);
lcd_send_stop_bit();
Serial.print("rest");
lcd_send_stop_bit();
Serial.print("connect");
lcd_send_stop_bit();
delay(1000);
Serial.print("whmi-wri 1024,115200,res0");
lcd_send_stop_bit();
lcd_wait_ack();
}
bool lcd_upload_write(uint8_t *data, size_t size)
{
for (int i = 0; i < size; i++)
{
Serial.write(data[i]);
}
}
bool lcd_wait_ack()
{
bool data_ok = false;
for (int i; i < 50; i++)
{
if (Serial.read() == 0x05)
{
data_ok = true;
break;
}
delay(100);
}
return data_ok;
}

View File

@ -1,14 +0,0 @@
#pragma once
#include <ESPMegaPRO.h>
void lcd_send_stop_bit();
void lcd_send_command(String command);
String lcd_wait_response();
void lcd_reset();
void lcd_init();
bool lcd_upload_start(size_t size);
bool lcd_upload_write(uint8_t* data, size_t size);
bool lcd_wait_ack();

37
src/lcd.cpp Normal file
View File

@ -0,0 +1,37 @@
#include <user_code.hpp>
#include <lcd.hpp>
void lcd_send_stop_bit()
{
#ifdef ENABLE_INTERNAL_LCD
Serial.write(0xFF);
Serial.write(0xFF);
Serial.write(0xFF);
#endif
}
void lcd_send_command(String command)
{
#ifdef ENABLE_INTERNAL_LCD
lcd_send_stop_bit();
Serial.print(command);
lcd_send_stop_bit();
#endif
}
void lcd_reset()
{
#ifdef ENABLE_INTERNAL_LCD
lcd_send_stop_bit();
lcd_send_command("rest");
lcd_send_stop_bit();
#endif
}
void lcd_init()
{
#ifdef ENABLE_INTERNAL_LCD
lcd_reset();
delay(750);
#endif
}

11
src/lcd.hpp Normal file
View File

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