Susi Server

Velocity Meter (ACT2535)

Node ID: act2535 · Role: Source · Realtime config: no

Description

Serial source for the Aichi ACT2535 non-contact optical velocity meter. Outputs 2D ground velocity as VelocityMeter and VehicleSpeed data for vehicular fusion pipelines.

Inputs / Outputs

Config aliases

Act2535Source, act2535Source, act2535, velocitymeter

Properties

The following fields are exposed in the node’s Properties panel in the UI. Types map to UI widgets (e.g. string → text input, number → numeric, boolean → toggle, select → dropdown, json → JSON editor).

KeyLabelTypeDefaultDescription / Notes
portSerial PortstringCOM10Serial port the ACT2535 is connected to (e.g. COM10 or /dev/ttyUSB0).
baudrateBaud Ratenumber115200Serial baud rate; the ACT2535 uses 115200 by default.
hwFlowControlHW Flow ControlbooleantrueEnable RTS/CTS hardware flow control on the serial link.

Example node definition

A full node definition in config.json looks like the block below. Paste it under the sources key of your config, keyed by the node’s instance name (any identifier; it doesn’t have to match the node ID).

{
  "sources": {
    "act2535": {
      "outEndpoint": "inproc://act2535_data",
      "settings": {
        "baudrate": 115200,
        "hwFlowControl": true,
        "port": "COM10"
      }
    }
  }
}

Field reference

FieldPurpose
outEndpointZMQ / inproc endpoint this source binds to publish its output. The runtime auto-generates one if omitted.
settingsAll user-configurable fields — see the Properties table above.

Connections can also be declared at the top-level connections array when settings.explicitConnections is true, as an alternative to filling inputEndpoints on each node.

Loading documentation…