Debug menu on album swap lcd #32

Closed
opened 2020-08-17 23:34:29 +00:00 by kemonine · 3 comments
Owner

Setup a debug menu on the album switching lcd activated by holding both buttons for 3s (or similar)

Show

  • IP Address
  • LUX sensor value if present
Setup a debug menu on the album switching lcd activated by holding both buttons for 3s (or similar) Show * IP Address * LUX sensor value if present
kemonine added the
enhancement
help wanted
labels 2020-08-17 23:34:36 +00:00
kemonine added this to the Initial Stable Deployment milestone 2020-08-17 23:34:38 +00:00
kemonine self-assigned this 2020-08-17 23:34:40 +00:00
kemonine modified the milestone from Initial Stable Deployment to Future 2020-08-18 18:52:29 +00:00
Author
Owner

network manager has a hiccup with getting wifi ip addresses, moving to future as this is 'value add' and not critical

this should ultimately be implemented as a network manager + dbus implementation

network manager has a hiccup with getting wifi ip addresses, moving to future as this is 'value add' and not critical this should ultimately be implemented as a network manager + dbus implementation
Author
Owner
Iplist=()
for i in `ip -o link show | cut -d : -f 2`;do
if [ "$i" != "lo" ] && [ "$i" != "wg0" ] ; then
ip=$(ip -f inet -o addr show $i|cut -d\  -f 7 | cut -d/ -f 1) ;
Iplist+=("$ip");
fi
done

for i in $Iplist; do
echo $i;
done
``` sh Iplist=() for i in `ip -o link show | cut -d : -f 2`;do if [ "$i" != "lo" ] && [ "$i" != "wg0" ] ; then ip=$(ip -f inet -o addr show $i|cut -d\ -f 7 | cut -d/ -f 1) ; Iplist+=("$ip"); fi done for i in $Iplist; do echo $i; done ```
kemonine modified the milestone from Future to Initial Stable Deployment 2020-08-18 19:49:45 +00:00
Author
Owner

Moved to initial stable deployment thanks to the above ip command tricks that work reliably

Moved to initial stable deployment thanks to the above ```ip``` command tricks that work reliably
Sign in to join this conversation.
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: PiFrame/piframe#32
No description provided.