def publish_ir_signal_saving_error(self):
     n = notification.IrReceiverNeochiApp(self._r)
     n.value = {'title': 'ir_signal_saving_error'}
 def publish_saved_ir_signal(self, ir_signal_id):
     n = notification.IrReceiverNeochiApp(self._r)
     n.value = {'title': 'saved_ir_signal', 'id': ir_signal_id}
 def publish_stopped_ir_receiving_more_signal(self):
     n = notification.IrReceiverNeochiApp(self._r)
     n.value = {'title': 'stopped_ir_receiving_more_signal'}
 def publish_stopped_ir_receiving_stop_message(self):
     n = notification.IrReceiverNeochiApp(self._r)
     n.value = {'title': 'stopped_ir_receiving_stop_message'}
 def publish_started_ir_receiving(self):
     n = notification.IrReceiverNeochiApp(self._r)
     # 信号の確認機能がまだ無いので今の所indexは0しか存在しない
     n.value = {'title': 'started_ir_receiving', 'index': 0}
 def publish_discarded_ir_signal(self):
     n = notification.IrReceiverNeochiApp(self._r)
     n.value = {'title': 'discarded_ir_signal'}