#2963 add note on touchscreen

This commit is contained in:
rootzoll 2022-02-17 18:07:49 +01:00
parent b0f9fc8e70
commit 535b4b43f9
3 changed files with 4 additions and 1 deletions

View file

@ -34,6 +34,7 @@
- Fixed: LND repair options, SEED+SCB and rescue-file restore, RESET options [issue](https://github.com/rootzoll/raspiblitz/issues/2832) - Fixed: LND repair options, SEED+SCB and rescue-file restore, RESET options [issue](https://github.com/rootzoll/raspiblitz/issues/2832)
- Info: All existing IP2Tor subscriptions need to be canceled & renewed to be functional again. - Info: All existing IP2Tor subscriptions need to be canceled & renewed to be functional again.
- Info: 32GB sd card is now required (was already long time recommended on shopping list) - Info: 32GB sd card is now required (was already long time recommended on shopping list)
- Info: Also the touchscreen graphical mode is not recommended to run at the moment - can make system unstable. This might take until v1.8.1 where the touchscreen will get a refactor/rewritwe.
## What's new in Version 1.7.1 of RaspiBlitz? ## What's new in Version 1.7.1 of RaspiBlitz?

View file

@ -655,6 +655,8 @@ It will enable 4 touch buttons on the left hand side of the screen.
- Invoice - creates an Invoice-QR code that can be used for payments - Invoice - creates an Invoice-QR code that can be used for payments
- Off - Shutdown or Restart the RaspiBlitz - Off - Shutdown or Restart the RaspiBlitz
Please mind that the touchscreen is still experimental and with recent changes can make the system unstable. This might take still until v1.8.1 release where the touchscreen is planned for a refactor/rewrite.
##### LCD Rotate ##### LCD Rotate
If you switch this on you can rotate the LCD of your RaspiBlitz 180 degrees. If you switch this on you can rotate the LCD of your RaspiBlitz 180 degrees.

View file

@ -111,7 +111,7 @@ OPTIONS=()
# LCD options (only when running with LCD screen) # LCD options (only when running with LCD screen)
if [ "${displayClass}" == "lcd" ]; then if [ "${displayClass}" == "lcd" ]; then
OPTIONS+=(s 'Touchscreen' ${touchscreenMenu}) OPTIONS+=(s 'Touchscreen (unstable)' ${touchscreenMenu})
OPTIONS+=(r 'LCD Rotate' ${lcdrotateMenu}) OPTIONS+=(r 'LCD Rotate' ${lcdrotateMenu})
fi fi