Topic: DControl Trigger to Router Script
This plug-in uses a script that allows the D-Controller D4S (in trigger mode) to control a router.
If you want/need the first button to be "Off", then modify using this change;
if inputs[0].changed_get():
outputs[0].value_set(0)
if inputs[1].changed_get():
outputs[0].value_set(1)
if inputs[2].changed_get():
outputs[0].value_set(2)
if inputs[3].changed_get():
outputs[0].value_set(3)
Fergy