-
-
Notifications
You must be signed in to change notification settings - Fork 104
Transponder with one rotary
This page is work in progress.
We will create a device to control a transponder using an LCD display and one single encoder. We'll have a look into
- Mobiflight variables
- References
- PWM to control the LCD background brightness for auto-shutoff
- Preconditions
- Modifiers
Our goal is to use the button of the encoder to switch the transponder digit to be modified by the rotary. When the device isn't connected to a running sim the background of the LCD will be off.
You will need:
- 1 compatible device for MF, eg. Arduino Mega 2560 or similar
- 1 LCD display with I2C interface
- 1 Rotary encoder
- Cables
- (maybe) 1 Breadboard to supply GND and VCC from Arduino to encoder and LCD
You should be familar with the basics of MF like adding hardware to a MobiFlight Module. You should know the difference between the Output configs and the Input configs of MF.
Wire the hardware similar to this drawing. At the moment, the wire between the I2C interface and a PWM enabled pin should be omitted, the jumper should be kept on the LED pins. This way the LCD will be lit for the moment. Later we connect the I2C interface to a PWM pin to control the brightness from MF.
Take care to use the I2C pins suitable for you micro controller.
To change the digit to be set when turning the encoder we will add a Input config for the encoder button. I named the configuration selectedDigit
and assinged the encoder push. The On Press action is of type MobiFlight - Variable, the variable type is Number. The name can be chosen as you like by entering into the box, I chose selectedDigit
as variable name.
The Value is set to the formula ($+1) % 4
. $ equals to the value of the variable which is initially 0. It adds 1 to this value. The result is divided by 4 but only the remainder is assigned back to the variable selectedDigit
. Sample:
- 0 -> adding 1 = 1 -> dividing by 4 is 0, remainder 1
- 1 -> adding 1 = 2 -> dividing by 4 is 0, remainder 2
- 2 -> adding 1 = 3 -> dividing by 4 is 0, remainder 3
- 3 -> adding 1 = 4 -> dividing by 4 is 1, remainder 0
Using this formula we can switch the variable from 0 to 3 and then begin at 0 again.
We change to the Output configs tab. There we will create some outputs.
Create a new configuration. This will only be used to output the variable. We will need this line later. Only select the created variable selectedDigit
on the Sim Variable tab. Everything else won't be changed, no Modify, no Display, no Precondition.
We want to change the numbers 0 to 3 to a string which will indicate the selected digit we're about to change. This will be a string like --^-
to indicate the 10th to be changed. I will show two different method to change the number into a string.
For both methods: Create a new configuration named selectedDigitString
, use a MobiFlight Variable and again select selectedDigit
and keep the type Number. Change to the Modify tab and ...
The first method to change the number into a string is to use 4 Comparison Modifiers. Change to the Modify tab and Add Modifier of type Compare four times.
Select each line by clicking on the Compare:
text. The value in the set it to field has to be surrounded by single quotes: ' The else, set it to field will always be empty. When empty, the evaluation will continue with the next Comparison line.
-
=
0
set it to'^---'
-
=
1
set it to'-^--'
-
=
2
set it to'--^-'
-
=
3
set it to'---^'
The second way is to use a Transformation Modifier and a Ncalc formula. Change to the Modify tab and Add Modifier of type Transformation. Enter this formula:
if($=0,'^---',if($=1,'-^--',if($=2,'--^-','---^')))
This is a nested condition. It will change the numbers to strings:
- 0 to
^---
- 1 to
-^--
- 2 to
--^-
- everything else to
---^
This will be used to highlight the selected digit on the display.
Run the configuration. When pressing the encoder button you should see now the two output configs changing. One line from 0 to 3 and back to 0. The other line should have a moving ^
surrounded by some -
signs.
Now we add another line to configure the output.
Search a configuration for the transponder code. For the MSFS this will be the preset TRANSPONDER CODE
, for the index enter a 1. The tab should look like that:
First we will Add Reference for the string representation selectedDigitString
. Now we can access the value of the string representation of the selected digit here. Each reference will get a symbol that can be used on the Display tab and in formulas to access the reference value. As default, the first added reference will have the symbol #
.
Next add a Modifier. This will be applied to the selected value from the Sim Variable tab. The "issue" with the transpoder code is, that a value like 0001
will be displayed as 1
on the LCD. To change this we Add Modifier of type Padding. Click on the text and set Character to 0
, Length to 4
and Direction to Left
. Using this modification, the value 1
will be displayed as 0001
like needed.
Now we put it all together. Select your configured LcdDisplay as Display Type.
Enter this text into the Text field:
XPDR $$$$
####
The $
signs will be replaced by the padded transponder code. The #
will contain the indicator for the selected digit.
When the configuration is running you'll see the indicator changing every time you press the encoder button. When you have a running simulator you should see the transponder code too. When changing the code inside the cockpit, you should see the code changing on the LCD display too.
Head over to the Input configs tab and create a new configuration. Select the Encoder on the Input tab.
Change over to the Config References tab. Add the selectedDigit as a reference like done for the Input. This will give us access to the selected digit her on the input.
Change back to the Input tab. We'll start on the On Left tab. For the MSFS we don't need a preset. Just tick the Show Preset Code box. Enter this code into the box:
# 0 == if{ (>K:XPNDR_1000_DEC) }
# 1 == if{ (>K:XPNDR_100_DEC) }
# 2 == if{ (>K:XPNDR_10_DEC) }
# 3 == if{ (>K:XPNDR_1_DEC) }
The result should look like that:
What does this code do? The #
is the reference to our selectedDigit
. A value of 0 indicates that we want to change the thousands digit. The code does mean:
-
# 0 ==
compare theselectedDigit
with 0. -
if{ (>K:XPNDR_1000_DEC) }
If the value is 0, execute the action decrementing the thousands.
The other lines are doing similar stuff for the hundreds, tenths and ones. The result is, that only the selected digit of the transponder code will be changed.
Click on the Copy button of the On Left tab, change to the On Right tab and click Paste. This will copy the configuration to the On Right. Change the code to use increments of the transponder digits:
# 0 == if{ (>K:XPNDR_1000_INC) }
# 1 == if{ (>K:XPNDR_100_INC) }
# 2 == if{ (>K:XPNDR_10_INC) }
# 3 == if{ (>K:XPNDR_1_INC) }
The result should look like that:
To have control on the brightness of the background, we have to change some cables and the MF Output configs.
Like shown on top of the page in the section The Wiring or in this article (Brightness of LCD displays with I2C), take of the jumper from the I2C. Connect the indicated pin to a pin of your Arduino which is capable of PWM (pulse width modulation).
Go to the MobiFlight Modules, select your device and add an device of type LED / Output. Select the chosen PWM pin. Upload the configuration to your device. I set the name to DisplayBrightness
Change to the Output configs tab. Create a new row with name transponderOn
.
Select the LED / Output element from your module configuration. Set the checkmark for the PWM mode.
To change an on/off value of 0 or 1 to a brightness value, Add Modifier of type Transform and enter the formula $*127
. If this is to dark or to bright, change the 127 by a higher or a lower number.
As a simple sample we will add the state of the Master Battery as indicator to switch on or off the display. Select the Variable Type of SimConnect (MSFS2020) but don't choose a preset. Tick the mark for Show Preset Code and enter the code (A:ELECTRICAL MASTER BATTERY, Bool) 1 ==
.
This will read out the state of the Master Battery as 0 (off) or 1 (on). The Modifier changes this to a value of 0 (0 * 127 = 0) or 127 (1 * 127 = 127). Because the I2C background pin is connected to this PWM pin, you will change the brightness of the background.
If you stop the configuration, MF will set the value to 0 and shutting off the background light.
When you have a running simulator in the background and the Master Battery is switched off you might see that the background display is off, but the LCD still shows the text. We will change that.
Open the Output config line for the LCD display. Change to the Preconditio tab. Select the topmost Precondition and enter these values:
- Use type of Config item
- Choose config transponderOn (the one created some steps above*
- If current value is != (for is unequal) and 0 meaning, this should be shown, if the transponderOn value is not zero.
Create a new configuration line, name it transponder-off and edit the line. The Sim Variable and Modify pages will be empty.
On the Display page select the LCD display, clear the text area and enter a single space. This will prevent MF from adding default text to the display.
Change to the Precondition page. Change the precondition as above, but with
- If current value is = (equal to) 0
This will activate this line only, when the Master Battery is off.
When you now switch off and on the Master Battery of the airplane, the display shoud be turned on and off accordingly.
- MobiFlight Connector Installation
- Mobiflight Connector BETA version installation
- Modules
- MobiFlight Connector Files Structure
- MobiFlight Connector Uninstall
- Modules Reset to factory default
- Verifying the WASM module installation and locating the MSFS2020 community folder
- Using a Winwing FCU with MobiFlight
- Providing logs from MobiFlight
- MobiFlight Connector How does it work
- Mobiflight Connector Main Window
- Flash module with MobiFlight firmware
- Input and Output devices
- Joysticks
- Midi Boards
- Sim Variables (for Output)
- Input Actions
- Merging configuration files
- Disabling specific COM ports
- Examples Output LEDs
- Examples Input Switch
- Example 7 segment display
- Example Servo motor
- Controlling LEDs with an output shift register
- Adding lots of buttons with an input shift register
- Beginner's guide to input multiplexers
- Key Matrix with standard MobiFlight and Multiplexers
- Tutorial Easy Driver and x.27 or x.40 Stepper Motor
- Tutorial for Airbus VS display via 7-Segment LED Module
- Example Analog Input Potentiometer
- Baron G58 Tutorial Gear, Flaps, Mags, ELT Input Output Programming
- Using Mobiflight to control arduino-based 3rd party panels (RealSimGear GNS530)
- How to use a VNH2SP30 DC motor shield with MobiFlight
- Using 3D printer mainboards
- Playing sounds by sending keystrokes to AutoHotKey
- Using the selector knob on a Honeycomb Bravo
- Using an adjustable 12 position switch as a GA starter
- Brightness of LCD displays with I2C
- Using three-position switches
- Transponder with one Rotary
- MSFS2020 RPN Tips and Tricks
- MSFS2020 Using the Custom Input Code Box
- MSFS2020 Install WASM module and Event List
- MSFS2020 How to Create and Use User Defined Lvars
- MSFS2020 How to Create a Blinking LED configuration
- MSFS2020 User Defined WASM Module Events Best Practices
- MSFS2020 Developer Mode, Model Behavior dialog and Console window
- MSFS2020 PMDG 737‐700 List of Events that require use of FSUIPC7
- MSFS2020 PMDG 737‐700 Calibrate throttle idle and reverse thrust using interpolation (Valkyrie)
- MSFS2020 PMDG 737-700 Chrono unit functions implemented in Mobiflight
- Configuring PMDG 737 Parking Brake Lever Auto-Release with a Servo in Mobiflight
- Using encoder to drive a value back and forth within a given range
- Adding a custom board to MobiFlight
- User guide - Community Board and Custom Devices
- Developing your own custom devices/boards