Index: leahi_dialin/td/proxies/ui_proxy.py =================================================================== diff -u -r3e8c15745640db0568536912a36704a567bd73c2 -r4d2710b034b98dcae6da6260b751e5968c05ad3b --- leahi_dialin/td/proxies/ui_proxy.py (.../ui_proxy.py) (revision 3e8c15745640db0568536912a36704a567bd73c2) +++ leahi_dialin/td/proxies/ui_proxy.py (.../ui_proxy.py) (revision 4d2710b034b98dcae6da6260b751e5968c05ad3b) @@ -447,3 +447,35 @@ override_text = 'N/A', logger = self.logger, can_interface = self.can_interface) + + + def cmd_send_ui_cartridge_install_confirm_response (self) -> None: + """ + Constructs and sends a UI response for confirming cartridge installation. + + :return: none + """ + cmd_generic_override(payload = None, + reset = None, + channel_id = CanChannels.ui_to_td_ch_id, + msg_id = MsgIds.MSG_ID_UI_ADJUST_DISPOSABLES_CONFIRM_REQUEST, + entity_name = 'UI Confirm Cartridge Installation response', + override_text = 'N/A', + logger = self.logger, + can_interface = self.can_interface) + + + def cmd_send_ui_cartridge_removal_confirm_response (self) -> None: + """ + Constructs and sends a UI response for confirming cartridge removal. + + :return: none + """ + cmd_generic_override(payload = None, + reset = None, + channel_id = CanChannels.ui_to_td_ch_id, + msg_id = MsgIds.MSG_ID_UI_ADJUST_DISPOSABLES_REMOVAL_CONFIRM_REQUEST, + entity_name = 'UI Confirm Cartridge Removal response', + override_text = 'N/A', + logger = self.logger, + can_interface = self.can_interface)