示例#1
0
 def __init__(self, root_fs="."):
     TargetNode.__init__(self, "file_system")
     # go ahead and include the FileSystem commands
     self.attach(FilesystemPutFile(root_fs))
     self.attach(FilesystemGetFile(root_fs))
     self.attach(FilesystemRemoveFile(root_fs))
     self.attach(FileystemListDirectory(root_fs))
示例#2
0
 def __init__(self, root_fs="."):
     TargetNode.__init__(self, "file_system")
     # go ahead and include the FileSystem commands
     self.attach(FilesystemPutFile(root_fs))
     self.attach(FilesystemGetFile(root_fs))
     self.attach(FilesystemRemoveFile(root_fs))
     self.attach(FileystemListDirectory(root_fs))
示例#3
0
文件: zigbee.py 项目: EdCornejo/cp4pc
 def __init__(self, root_fs="."):
     TargetNode.__init__(self, "zigbee")
     # include the ZigBee commands
     self.attach(Discover())
     self.attach(QuerySetting())
     self.attach(QueryState())
示例#4
0
 def __init__(self, root_fs="."):
     TargetNode.__init__(self, "zigbee")
     # include the ZigBee commands
     self.attach(Discover())
     self.attach(QuerySetting())
     self.attach(QueryState())