ACT2535 Output
Node ID: act2535Output · Role: Sink · Realtime config: no
Description
Emulates an Aichi ACT2535 velocity meter over serial. Re-encodes VelocityMeter data in the ACT2535 binary protocol for consumption by external systems that already integrate that device.
Inputs / Outputs
- Inputs:
VelocityMeter - Outputs: (none)
Config aliases
Act2535Output, act2535Output
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).
| Key | Label | Type | Default | Description / Notes |
|---|---|---|---|---|
port | Serial Port | string | "" | Serial port the ACT2535 is connected to. |
baudRate | Baud Rate | number | 115200 | Serial baud rate (ACT2535 default: 115200). |
Example node definition
A full node definition in config.json looks like the block below. Paste it under the sinks key of your config, keyed by the node’s instance name (any identifier; it doesn’t have to match the node ID).
{
"sinks": {
"act2535Output": {
"inputEndpoints": [
"inproc://velocityMeter_data"
],
"inputDataFilter": [
"VelocityMeter"
],
"settings": {
"baudRate": 115200,
"port": ""
}
}
}
}
Field reference
| Field | Purpose |
|---|---|
inputEndpoints | List of upstream endpoints this node connects to (outEndpoint / dataEndpoint values from upstream nodes). |
inputDataFilter | Optional whitelist of data types. Messages whose type isn’t in the list are dropped at the subscriber. |
settings | All user-configurable fields — see the Properties table above. |
Connections can also be declared at the top-level
connectionsarray whensettings.explicitConnectionsistrue, as an alternative to fillinginputEndpointson each node.