Fixed up some of the weird cases for image loading and modified the install script to include the 2in7 display

This commit is contained in:
IncredibleZuess
2024-11-09 18:33:24 +02:00
parent 4a85e32c3b
commit 50c77e729d
3 changed files with 10 additions and 2 deletions

View File

@@ -531,6 +531,7 @@ main() {
echo "2. epd2in13_V2"
echo "3. epd2in13_V3"
echo "4. epd2in13_V4"
echo "5. epd2in7"
while true; do
read -p "Enter your choice (1-4): " epd_choice
@@ -539,6 +540,7 @@ main() {
2) EPD_VERSION="epd2in13_V2"; break;;
3) EPD_VERSION="epd2in13_V3"; break;;
4) EPD_VERSION="epd2in13_V4"; break;;
5) EPD_VERSION="epd2in7"; break;;
*) echo -e "${RED}Invalid choice. Please select 1-4.${NC}";;
esac
done