QOpenHD icon indicating copy to clipboard operation
QOpenHD copied to clipboard

Confirming correct format for additional preset fields

Open htcohio opened this issue 6 years ago • 0 comments

Thank you for all of the work on OpenHD and QOpenHD!

The new preset paramater option that was recently added to the app has the potential to really simplify first-time setup and configuration for new users.

I have several presets I would like to add.

For my first, I simply used the secondary USB camera preset as a template for Atheros or Rtl8812au settings.

Are you able to confirm that this is written correctly?

Does the first line Item { Need to be defined as a second field?

**

I am referring to this file: https://github.com/OpenHD/QOpenHD/blob/master/qml/ui/PresetMap.qml

Item {

property var presetSettingsMap: ([
    { title: "OpenHD Wireless Chipset Presets",
      info: "REALTEK RTL8812AU Presets (Will configure ground+air for RTL8812AU wireless cards "
      settings: [{setting: "FREQ", value: "5180"},
                 {setting: "UseMCS", value: "Y"},
                 {setting: "UseSTBC", value: "Y"},
                 {setting: "UseLDPC", value: "Y"},
    },
	{ title: "OpenHD Wireless Chipset Presets",
      info: "ATHEROS AR9271 Presets (Will configure ground+air for Atheros wireless cards ",
      settings: [{setting: "FREQ", value: "2484"},
                 {setting: "UseMCS", value: "N"},
                 {setting: "UseSTBC", value: "N"},
                 {setting: "UseLDPC", value: "N"},
    },		
	
])

}

htcohio avatar Jan 27 '20 11:01 htcohio