Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IActuator.cs
1using System.Threading.Tasks;
3
4namespace Waher.Things
5{
9 public interface IActuator : INode
10 {
15 Task<ControlParameter[]> GetControlParameters();
16 }
17}
Interface for actuator nodes.
Definition: IActuator.cs:10
Task< ControlParameter[]> GetControlParameters()
Get control parameters for the actuator.
Interface for nodes that are published through the concentrator interface.
Definition: INode.cs:49