-
Notifications
You must be signed in to change notification settings - Fork 0
OSC interface ‐ Ethernet to GPO
Defaults to 12321, could be any number between 1024 and 65535. Set it through the web interface. A factory reset puts this number back to 12321.
When the port is set to zero, all incoming messages will be ignored and the first 6 leds will not be lit.
An OSC message without an argument (/press/bank/1/1
) will close a contact and automatically open it again after the set time. This time by default 15 milliseconds. Set it through the web interface.
When an argument is provided (either 1 or 0), the contact is kept closed (1) or opened (0) permanently until another message is received.
Hit the Save
button and changes will take effect immediately (no reboot needed).
All the above setting can be sent to the device using CURL, Insomnia or Postman (or any other REST API tool).
Example:
curl --request POST \
--url http://192.168.0.220/osc \
--header 'Content-Type: application/json' \
--data '{
{
'ethernet_to_gpo': {
'port': 12321,
'autoUpDuration': 15
}
}