|
__init__(self,
node_name,
dev_name)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
list_signal_names(self)
return a list of all signals |
source code
|
|
|
get_signal_type(self,
signal_name)
return the status for the given signal, or none |
source code
|
|
|
get_signal_value(self,
signal_name)
return the status for the given signal, or none |
source code
|
|
|
set_signal_value(self,
signal_name,
signal_value,
signal_type=None,
timeout=5.0)
set the value for the given signal return True if the signal value is
set, False if the requested signal is invalid |
source code
|
|
|
list_port_names(self)
return a list of all ports |
source code
|
|
|
get_port_type(self,
port_name)
return the status for the given port, or none |
source code
|
|
|
get_port_value(self,
port_name)
return the status for the given port, or none |
source code
|
|
|
set_port_value(self,
port_name,
port_value,
port_type=None,
timeout=5.0)
set the value for the given port return True if the port value is
set, False if the requested port is invalid |
source code
|
|
str
|
register_callback(self,
callback_function,
signal_name,
poll_rate=10)
Registers a supplied callback to a change in state of supplied
signal_name's value. |
source code
|
|
bool
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|