1
0
mirror of https://github.com/revspace/operame synced 2024-11-01 05:57:30 +00:00

Merge pull request #1 from tomderyck/main

Logo update and Excel Data Streamer
This commit is contained in:
ControlCO2.space 2021-06-07 17:26:30 +02:00 committed by GitHub
commit 44867dc781
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7111 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

7108
logo.h

File diff suppressed because it is too large Load Diff

View File

@ -103,7 +103,7 @@ void display_lines(const std::list<String>& lines, int fg = TFT_WHITE, int bg =
void display_logo() { void display_logo() {
clear_sprite(); clear_sprite();
sprite.setSwapBytes(true); sprite.setSwapBytes(true);
sprite.pushImage(12, 30, 215, 76, OPERAME_LOGO); sprite.pushImage(0, 0, 240, 135, CONTROL_CO2_V2_240_135_LOGO);
sprite.pushSprite(0, 0); sprite.pushSprite(0, 0);
} }
@ -479,7 +479,8 @@ void loop() {
every(5000) { every(5000) {
co2 = get_co2(); co2 = get_co2();
Serial.println(co2); Serial.print(co2);
Serial.println();
} }
every(50) { every(50) {