Skip to content

Commit

Permalink
Populating buttons and add info
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioFPVdev authored and MarioFPVdev committed Oct 20, 2024
1 parent 586fbd3 commit 43e2bf0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 16 deletions.
3 changes: 2 additions & 1 deletion Configurator.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 13 additions & 10 deletions Configurator.resx
Original file line number Diff line number Diff line change
Expand Up @@ -120,16 +120,9 @@
<metadata name="btnToolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="btnMSP.ToolTip" xml:space="preserve">
<value>Upload the latest MSPOSD of OpenIPC
Upload the fonts for Betaflight to the OpenIPC camera

To enter the menu move:
LEFT stick to bottom right and
RIGHT stick to bottom left

MSPVTX is partially working, do NOT use</value>
</data>
<metadata name="btnToolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="Label4.Text" xml:space="preserve">
<value>Step 1: Select which VRX to use
Step 2: Enter the VRX IP
Expand All @@ -140,6 +133,16 @@ Step 6: Select the option [OpenIPC Camera]
Step 7: Enter the OpenIPC camera IP
Step 8: Click [Send drone.key]
Step 9: Reboot OpenIPC camera</value>
</data>
<data name="btnMSP.ToolTip" xml:space="preserve">
<value>Upload the latest MSPOSD of OpenIPC
Upload the fonts for Betaflight to the OpenIPC camera

To enter the menu move:
LEFT stick to bottom right and
RIGHT stick to bottom left

MSPVTX is partially working, do NOT use</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="PictureBox1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
Expand Down
13 changes: 8 additions & 5 deletions Configurator.vb
Original file line number Diff line number Diff line change
Expand Up @@ -1515,7 +1515,7 @@ err1:
txtPortVRX.Text = ""
txtMavlinkVRX.Text = ""
txtExtras.Text = ""
btnResetCam.Enabled = False
btnResetCam.Visible = False
btnSaveReboot.Enabled = False
btnReboot.Enabled = False
Label8.Visible = True
Expand All @@ -1530,14 +1530,15 @@ err1:
btnUpdate.Visible = False
btnRuby.Visible = False
btnWFB.Visible = False
btnOfflinefw.Visible = False
btnOfflinefw.Visible = True
cmbVersion.Visible = True
Button2.Visible = False
Button3.Visible = False
btnSensor.Visible = False
btnBinBackup.Visible = False
btnDriver.Visible = False
btnDriverBackup.Visible = False
cmbSensor.Visible = True
cmbSensor.Visible = False
txtDriver.Visible = False
btnMSPGS.Visible = False
btnMAVGS.Visible = False
Expand Down Expand Up @@ -1671,7 +1672,7 @@ err1:
txtPortVRX.Text = ""
txtMavlinkVRX.Text = ""
txtExtras.Text = ""
btnResetCam.Enabled = True
btnResetCam.Visible = True
btnSaveReboot.Enabled = False
btnReboot.Enabled = False
Label8.Visible = True
Expand All @@ -1687,6 +1688,7 @@ err1:
btnRuby.Visible = True
btnWFB.Visible = True
btnOfflinefw.Visible = True
cmbVersion.Visible = True
Button2.Visible = True
Button3.Visible = True
btnSensor.Visible = True
Expand Down Expand Up @@ -1828,7 +1830,7 @@ err1:
txtPortVRX.Text = ""
txtMavlinkVRX.Text = ""
txtExtras.Text = ""
btnResetCam.Enabled = False
btnResetCam.Visible = False
btnSaveReboot.Enabled = False
btnReboot.Enabled = False
Label8.Visible = False
Expand All @@ -1844,6 +1846,7 @@ err1:
btnRuby.Visible = False
btnWFB.Visible = False
btnOfflinefw.Visible = False
cmbVersion.Visible = False
Button2.Visible = False
Button3.Visible = False
btnSensor.Visible = False
Expand Down

0 comments on commit 43e2bf0

Please sign in to comment.