本文整理汇总了Python中interpreter.Interpreter.buildRecordData方法的典型用法代码示例。如果您正苦于以下问题:Python Interpreter.buildRecordData方法的具体用法?Python Interpreter.buildRecordData怎么用?Python Interpreter.buildRecordData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类interpreter.Interpreter
的用法示例。
在下文中一共展示了Interpreter.buildRecordData方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Modem
# 需要导入模块: from interpreter import Interpreter [as 别名]
# 或者: from interpreter.Interpreter import buildRecordData [as 别名]
#.........这里部分代码省略.........
self.send(self.interpreter.buildRun(script_name, output_name, \
starting_time, duration))
while self.status != Modem.Status.IDLE and self.status != Modem.Status.KILL:
sleep(self.m_to)
#self.recvCommand()
if self.status == Modem.Status.KILL:
return self.close()
return self.errorCheck()
def reqRecordData(self, name, sens_t, ID_list, starting_time, duration, \
force_flag = 0):
"""
record via sensors (either hydrophones, camera or others).
@param self pointer to the class object
@param name of the file where to record the audio
@param sens_t of the sensors that have to record the data:
0 --> hydrophone,
1 --> camera
2 --> others
@param ID_list list of the projector IDs used to record the audio
@param starting_time Unix timestamp, in second, when to start recording the file
@param duration duration, in minutes of the recording
@param force_flag if trying to record while transmitting:
0 (default) not allowed (error feedback)
1 (force) stop transmitting and start recording
2 (both) do both the operations together
"""
while self.status != Modem.Status.IDLE :
sleep(0.1)
if self.status != Modem.Status.IDLE:
raise ValueError("Modem recordAudio unexpected status:\
" + str(self.status))
self.status = Modem.Status.BUSY2REQ
self.send(self.interpreter.buildRecordData(name, sens_t, ID_list, \
starting_time, duration, force_flag))
while self.status != Modem.Status.IDLE and self.status != Modem.Status.KILL:
sleep(self.m_to)
#self.recvCommand()
if self.status == Modem.Status.KILL:
return self.close()
return self.errorCheck()
def reqNodeStatus(self):
"""
Require the submerged node status.
@param self pointer to the class object
"""
while self.status != Modem.Status.IDLE :
sleep(0.1)
if self.status != Modem.Status.IDLE:
raise ValueError("Modem getNodeStatus unexpected status: \
" + str(self.status))
self.status = Modem.Status.BUSY2REQ
self.send(self.interpreter.buildGetStatus())
while self.status != Modem.Status.IDLE and self.status != Modem.Status.KILL:
sleep(self.m_to)
#self.recvCommand()
if self.status == Modem.Status.KILL:
return self.close()
return self.errorCheck()
def getNodeStatus(self,status = 0):
"""
Get the submerged node status.
@param status cointaining the status received from the node
@param self pointer to the class object