[tui] show wire and IR devices in UI

This commit is contained in:
Gwenhael Le Moine 2023-09-23 20:43:43 +02:00
parent 658fbdf036
commit 4ca96f12b9
No known key found for this signature in database
GPG key ID: FDFE3669426707A7

View file

@ -686,5 +686,7 @@ void init_text_ui( int argc, char** argv )
mvvline( 1, 0, ACS_VLINE, LCD_BOTTOM - 1 );
mvvline( 1, LCD_RIGHT, ACS_VLINE, LCD_BOTTOM - 1 );
mvprintw( 0, 1, "[ | | | | | ]" ); /* annunciators */
mvprintw( 0, 2, "[ | | | | | ]" ); /* annunciators */
mvprintw( LCD_BOTTOM, 2, "[ wire: %s ][ IR: %s ]", wire_name, ir_name );
}