I'm working on an update for the keybinds project for the Mi-8 and have fixes for a lot of those if anyone is interested in dropping some LUA code in. The toggles, up/down, and CW/CCW commands starting with Button_108 are offset by one and should be incremented (ie, 'Rectifier 1 Switch - ON/OFF' uses 'device_commands.Button_108' but should be 'device_commands.Button_109').
I kind of lucked out that the up/down and CW/CCW ones still increment/decrement by 1, and toggle switches worked, with a value of 2 passed (to differentiate them from the default controls without having to edit the default files). I should have the full keybinds project update checked into github in the next few days (just finished up with all the circuit breakers).
@Flappie I haven't been able to find a fix for 'Battery Heating ON/OFF' toggle, and didn't see it on your list. Could you check/confirm if it's a candidate for your bug report?
Edit: Forgot to mention all the fixes have (Fixed) appended in the name and are in a new Electric Panels Fixes category.
-- Electric System Panels
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_119, value_down = 2, name = _('Generator 1 Switch - ON/OFF (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_15, up = device_commands.Button_15, value_down = 0, value_up = 1, name = _('Generator 1 Switch - OFF else ON (2-way Switch)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_15, up = device_commands.Button_15, value_down = 1, value_up = 0, name = _('Generator 1 Switch - ON else OFF (2-way Switch)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_120, value_down = 2, name = _('Generator 2 Switch - ON/OFF (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_16, up = device_commands.Button_16, value_down = 0, value_up = 1, name = _('Generator 2 Switch - OFF else ON (2-way Switch)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_16, up = device_commands.Button_16, value_down = 1, value_up = 0, name = _('Generator 2 Switch - ON else OFF (2-way Switch)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_121, value_down = 2, name = _('AC Ground Power Switch - ON/OFF (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_14, up = device_commands.Button_14, value_down = 0, value_up = 1, name = _('AC Ground Power Switch - OFF else ON (2-way Switch)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_14, up = device_commands.Button_14, value_down = 1, value_up = 0, name = _('AC Ground Power Switch - ON else OFF (2-way Switch)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_122, value_down = -2, name = _('115V Inverter Switch - Down (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_122, value_down = 2, name = _('115V Inverter Switch - Up (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_12, up = device_commands.Button_12, value_down = -1, value_up = 0, name = _('115V Inverter Switch - AUTO else OFF (3-way Switch Down)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_12, up = device_commands.Button_12, value_down = 1, value_up = 0, name = _('115V Inverter Switch - MANUAL else OFF (3-way Switch Up)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_123, value_down = -2, name = _('36V Inverter Switch - Down (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_123, value_down = 2, name = _('36V Inverter Switch - Up (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_13, up = device_commands.Button_13, value_down = -1, value_up = 0, name = _('36V Inverter Switch - AUTO else OFF (3-way Switch Down)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_13, up = device_commands.Button_13, value_down = 1, value_up = 0, name = _('36V Inverter Switch - MANUAL else OFF (3-way Switch Up)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_17, value_down = 0, name = _('AC Voltmeter Selector Switch - OFF'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_17, value_down = 0.1, name = _('AC Voltmeter Selector Switch - GENERATOR 1 I-II'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_17, value_down = 0.2, name = _('AC Voltmeter Selector Switch - GENERATOR 1 II-III'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_17, value_down = 0.3, name = _('AC Voltmeter Selector Switch - GENERATOR 1 III-I'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_17, value_down = 0.4, name = _('AC Voltmeter Selector Switch - GENERATOR 2 I-II'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_17, value_down = 0.5, name = _('AC Voltmeter Selector Switch - GENERATOR 2 II-III'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_17, value_down = 0.6, name = _('AC Voltmeter Selector Switch - GENERATOR 2 III-I'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_17, value_down = 0.7, name = _('AC Voltmeter Selector Switch - EXT PWR I-II'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_17, value_down = 0.8, name = _('AC Voltmeter Selector Switch - EXT PWR II-III'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_17, value_down = 0.9, name = _('AC Voltmeter Selector Switch - EXT PWR III-I'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_17, value_down = 1, name = _('AC Voltmeter Selector Switch - 115V'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_124, value_down = -2, name = _('AC Voltmeter Selector Switch - CCW (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_124, value_down = 2, name = _('AC Voltmeter Selector Switch - CW (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_8, value_down = 0, name = _('DC Voltmeter Selector Switch - OFF (LEFT)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_8, value_down = 0.1, name = _('DC Voltmeter Selector Switch - BATTERY 1'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_8, value_down = 0.2, name = _('DC Voltmeter Selector Switch - BATTERY 2'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_8, value_down = 0.3, name = _('DC Voltmeter Selector Switch - STBY GEN'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_8, value_down = 0.4, name = _('DC Voltmeter Selector Switch - BUSES BATT'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_8, value_down = 0.5, name = _('DC Voltmeter Selector Switch - BUSES RECT'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_8, value_down = 0.6, name = _('DC Voltmeter Selector Switch - EXT PWR'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_8, value_down = 0.7, name = _('DC Voltmeter Selector Switch - OFF (RIGHT)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_117, value_down = -2, name = _('DC Voltmeter Selector Switch - CCW (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_117, value_down = 2, name = _('DC Voltmeter Selector Switch - CW (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_112, value_down = 2, name = _('Battery 1 Switch - ON/OFF (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_3, up = device_commands.Button_3, value_down = 0, value_up = 1, name = _('Battery 1 Switch - OFF else ON (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_3, up = device_commands.Button_3, value_down = 1, value_up = 0, name = _('Battery 1 Switch - ON else OFF (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_113, value_down = 2, name = _('Battery 2 Switch - ON/OFF (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_2, up = device_commands.Button_2, value_down = 0, value_up = 1, name = _('Battery 2 Switch - OFF else ON (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_2, up = device_commands.Button_2, value_down = 1, value_up = 0, name = _('Battery 2 Switch - ON else OFF (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_114, value_down = 2, name = _('Standby Generator Switch - ON/OFF (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_1, up = device_commands.Button_1, value_down = 0, value_up = 1, name = _('Standby Generator Switch - OFF else ON (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_1, up = device_commands.Button_1, value_down = 1, value_up = 0, name = _('Standby Generator Switch - ON else OFF (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_109, value_down = 2, name = _('Rectifier 1 Switch - ON/OFF (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_7, up = device_commands.Button_7, value_down = 0, value_up = 1, name = _('Rectifier 1 Switch - OFF else ON (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_7, up = device_commands.Button_7, value_down = 1, value_up = 0, name = _('Rectifier 1 Switch - ON else OFF (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_110, value_down = 2, name = _('Rectifier 2 Switch - ON/OFF (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_5, up = device_commands.Button_5, value_down = 0, value_up = 1, name = _('Rectifier 2 Switch - OFF else ON (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_5, up = device_commands.Button_5, value_down = 1, value_up = 0, name = _('Rectifier 2 Switch - ON else OFF (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_111, value_down = 2, name = _('Rectifier 3 Switch - ON/OFF (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_6, up = device_commands.Button_6, value_down = 0, value_up = 1, name = _('Rectifier 3 Switch - OFF else ON (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_6, up = device_commands.Button_6, value_down = 1, value_up = 0, name = _('Rectifier 3 Switch - ON else OFF (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_115, value_down = 2, name = _('DC Ground Power Switch - ON/OFF (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_4, up = device_commands.Button_4, value_down = 0, value_up = 1, name = _('DC Ground Power Switch - OFF else ON (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_4, up = device_commands.Button_4, value_down = 1, value_up = 0, name = _('DC Ground Power Switch - ON else OFF (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_116, value_down = 2, name = _('Equipment Test Switch - ON/OFF (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_9, up = device_commands.Button_9, value_down = 0, value_up = 1, name = _('Equipment Test Switch - OFF else ON (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_9, up = device_commands.Button_9, value_down = 1, value_up = 0, name = _('Equipment Test Switch - ON else OFF (2-way Switch)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_127, value_down = 2, name = _('Net on Rectifier Switch Cover - OPEN/CLOSE (Fixed)'), category = {_('Center Console'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_21, up = device_commands.Button_21, value_down = 0, value_up = 1, name = _('Net on Rectifier Switch Cover - CLOSE else OPEN (2-way Switch)'), category = {_('Center Console'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_21, up = device_commands.Button_21, value_down = 1, value_up = 0, name = _('Net on Rectifier Switch Cover - OPEN else CLOSE (2-way Switch)'), category = {_('Center Console'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_128, value_down = 2, name = _('Net on Rectifier Switch - ON/OFF (Fixed)'), category = {_('Center Console'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_19, up = device_commands.Button_19, value_down = 0, value_up = 1, name = _('Net on Rectifier Switch - OFF else ON (2-way Switch)'), category = {_('Center Console'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_19, up = device_commands.Button_19, value_down = 1, value_up = 0, name = _('Net on Rectifier Switch - ON else OFF (2-way Switch)'), category = {_('Center Console'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_129, value_down = -2, name = _('36V Transformer Selector Switch - Down (Fixed)'), category = {_('Center Console'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_129, value_down = 2, name = _('36V Transformer Selector Switch - Up (Fixed)'), category = {_('Center Console'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_20, up = device_commands.Button_20, value_down = -1, value_up = 0, name = _('36V Transformer Selector Switch - AUXILIARY else OFF (3-way Switch Down)'), category = {_('Center Console'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, down = device_commands.Button_20, up = device_commands.Button_20, value_down = 1, value_up = 0, name = _('36V Transformer Selector Switch - MAIN else OFF (3-way Switch Up)'), category = {_('Center Console'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_118, value_pressed = -0.1, name=_('Standby Generator Voltage Adjustment Rheostat - CCW/Decrease (Slow)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_118, value_pressed = 0.1, name=_('Standby Generator Voltage Adjustment Rheostat - CW/Increase (Slow)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_118, value_pressed = -0.2001, name=_('Standby Generator Voltage Adjustment Rheostat - CCW/Decrease (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_118, value_pressed = 0.2001, name=_('Standby Generator Voltage Adjustment Rheostat - CW/Increase (Fixed)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_118, value_pressed = -0.4, name=_('Standby Generator Voltage Adjustment Rheostat - CCW/Decrease (Fast)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_118, value_pressed = 0.4, name=_('Standby Generator Voltage Adjustment Rheostat - CW/Increase (Fast)'), category = {_('Right Side Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_125, value_pressed = -0.1, name=_('Generator 1 Voltage Adjustment Rheostat - CCW/Decrease (Slow)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_125, value_pressed = 0.1, name=_('Generator 1 Voltage Adjustment Rheostat - CW/Increase (Slow)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_125, value_pressed = -0.2001, name=_('Generator 1 Voltage Adjustment Rheostat - CCW/Decrease (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_125, value_pressed = 0.2001, name=_('Generator 1 Voltage Adjustment Rheostat - CW/Increase (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_125, value_pressed = -0.4, name=_('Generator 1 Voltage Adjustment Rheostat - CCW/Decrease (Fast)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_125, value_pressed = 0.4, name=_('Generator 1 Voltage Adjustment Rheostat - CW/Increase (Fast)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_126, value_pressed = -0.1, name=_('Generator 2 Voltage Adjustment Rheostat - CCW/Decrease (Slow)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_126, value_pressed = 0.1, name=_('Generator 2 Voltage Adjustment Rheostat - CW/Increase (Slow)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_126, value_pressed = -0.2001, name=_('Generator 2 Voltage Adjustment Rheostat - CCW/Decrease (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_126, value_pressed = 0.2001, name=_('Generator 2 Voltage Adjustment Rheostat - CW/Increase (Fixed)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Electric Panels Fixes'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_126, value_pressed = -0.4, name=_('Generator 2 Voltage Adjustment Rheostat - CCW/Decrease (Fast)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},
{cockpit_device_id = devices.ELEC_INTERFACE, pressed = device_commands.Button_126, value_pressed = 0.4, name=_('Generator 2 Voltage Adjustment Rheostat - CW/Increase (Fast)'), category = {_('Electrical Control Panel'), _('Electric Panels'), _('Custom')}},