Good morning,
the external lights and landing lights in the M2000C have 3 positions, however the lua file does not allow to bind them properly with a 3 way switch. There would be the need of a lua file input like "Anti-collision lights bright else dim" and "Anti-collision lights off else dim".
the inputs would be as follows:
{category = _('Exterior Lights'), name = _('Anti-Collision Lights OFF else DIM'), down = 3453, up = 3453, cockpit_device_id = 16, value_down = 0.0, value_up = 0.5, },
{category = _('Exterior Lights'), name = _('Anti-Collision Lights BRIGHT else DIM'), down = 3453, up = 3453, cockpit_device_id = 16, value_down = 1.0, value_up = 0.5, },
{category = _('Exterior Lights'), name = _('Navigation Lights OFF else DIM'), down = 3454, up = 3454, cockpit_device_id = 16, value_down = 0.0, value_up = 0.5, },
{category = _('Exterior Lights'), name = _('Navigation Lights BRIGHT else DIM'), down = 3454, up = 3454, cockpit_device_id = 16, value_down = 1.0, value_up = 0.5, },
{category = _('Exterior Lights'), name = _('Formation Lights OFF else DIM'), down = 3455, up = 3455, cockpit_device_id = 16, value_down = 0.0, value_up = 0.5, },
{category = _('Exterior Lights'), name = _('Formation Lights BRIGHT else DIM'), down = 3455, up = 3455, cockpit_device_id = 16, value_down = 1.0, value_up = 0.5, },
thanks