Index: dialin/ui/hd_simulator.py =================================================================== diff -u -rd45ebd9da5b356cb88f9e1cc2b3d71f8cb0ddbab -r0c506add6ec9f3d394780bb584a92090b5f34a7c --- dialin/ui/hd_simulator.py (.../hd_simulator.py) (revision d45ebd9da5b356cb88f9e1cc2b3d71f8cb0ddbab) +++ dialin/ui/hd_simulator.py (.../hd_simulator.py) (revision 0c506add6ec9f3d394780bb584a92090b5f34a7c) @@ -27,6 +27,9 @@ from math import copysign import threading as threads_here from time import time, sleep + +HD_VERSION = "Demo 1.0.0" # TODO: add the MSG_ID_HD_VERSION_REPONSE to actually get it on the UI screen + def catch_exception(f): @functools.wraps(f) def func(*args, **kwargs): @@ -269,7 +272,7 @@ if msg_id in ignore_typical_msg_ids: print(".", end='') else: - print("generic handler:", MsgIds(msg_id).name, message) + # print("generic handler:", MsgIds(msg_id).name, message) params = self.get_message_list_data(message) # convert payload data # UI RESET --------------------------------------------------------