コード例 #1
0
ファイル: ZioInterface.py プロジェクト: FedericoVaga/PyZio
 def is_data_writable(self):
     """
     It returns if you can write data into device
     """
     return is_writable(self.datafile)
コード例 #2
0
ファイル: ZioAttribute.py プロジェクト: FedericoVaga/PyZio
 def is_writable(self):
     """
     It returns if the attributes is writable
     """
     return is_writable(self.fullpath)
コード例 #3
0
ファイル: ZioInterface.py プロジェクト: FedericoVaga/PyZio
 def is_ctrl_writable(self):
     """
     It returns if you can write control into device
     """
     return is_writable(self.ctrlfile)