ISensorIo

public protocol ISensorIo

Base interface for a sensor hardware-level IO control. Provides the basic read and write functionality according to the given parameters.

  • Undocumented

    Declaration

    Swift

    init(parameters: Any?)
  • Undocumented

    Declaration

    Swift

    var parameters: Any? { get set }
  • Undocumented

    Declaration

    Swift

    func read(callback: ((Any) -> ()))
  • Undocumented

    Declaration

    Swift

    func write(value: Any)