Skip to content

Commit

Permalink
add LCD TFT display
Browse files Browse the repository at this point in the history
  • Loading branch information
jjbel committed Jan 6, 2025
1 parent 750d521 commit 308961f
Show file tree
Hide file tree
Showing 4 changed files with 400 additions and 4 deletions.
6 changes: 6 additions & 0 deletions DEVLOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,9 @@ Intent: programatically toggle solenoid using motor shield to give or cut DC out
1. Mounted components on a particle board panel (from Merwan's)

2. switch motor and solenoid terminals to M4 and M# respectively

## `2025-01-06`

1. Test TFT display on a separate Arduino

2. See README for links, tutorials, libraries
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ https://www.iqsdirectory.com/articles/solenoid-valve/3-way-solenoid-valves.html

https://robu.in/product-category/microcontroller-development-board/arduino-boards/display-for-arduino/

https://www.google.com/search?q=arduino+screen+tutorial
https://youtu.be/4DtuOeeYHys

https://learn.adafruit.com/adafruit-2-8-and-3-2-color-tft-touchscreen-breakout-v2

https://randomnerdtutorials.com/guide-to-1-8-tft-display-with-arduino/

https://en.wikipedia.org/wiki/TFT_LCD: enlightening

Expand Down
9 changes: 6 additions & 3 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@
platform = atmelavr
board = uno
framework = arduino
lib_deps = bogde/HX711@^0.7.5, adafruit/Adafruit Motor Shield library@^1.0.1
lib_deps =
bogde/HX711@^0.7.5
adafruit/Adafruit Motor Shield library@^1.0.1
adafruit/Adafruit GFX Library@^1.11.11
adafruit/Adafruit ILI9341@^1.6.1
monitor_speed = 38400

; https://docs.platformio.org/en/stable/projectconf/sections/env/options/build/build_unflags.html
build_flags = -std=c++17 -std=gnu++17
build_unflags = -std=gnu++11
src_filter = +<*> -<main.cpp>
Loading

0 comments on commit 308961f

Please sign in to comment.