BlueFinBima / DCS-FA18C-UFC

This is a hardware and software project to build an Up Front Controller for the DCS F/A-18C Hornet
GNU General Public License v3.0
44 stars 5 forks source link

Building for VR only #8

Open dwizle81 opened 11 months ago

dwizle81 commented 11 months ago

Great job planning on using your plans to build my own UFC. My issue I only fly in VR so the displays and the backlight are a high priority for me So can I build it without including those features will the buttons and switches still work? or should I redo the PCB for an Arduino?

BlueFinBima commented 11 months ago

Hi, I can't think of any reason why operation would be changed if the displays and LEDs were omitted. Probably a bunch of other components can be removed as well.

Good luck with the build.

On Thu, 9 Nov 2023 at 12:15, dwizle81 @.***> wrote:

Great job planning on using your plans to build my own UFC. My issue I only fly in VR so the displays and the backlight are a high priority for me So can I build it without including those features will the buttons and switches still work? or should I redo the PCB for an Arduino?

— Reply to this email directly, view it on GitHub https://github.com/BlueFinBima/DCS-FA18C-UFC/issues/8, or unsubscribe https://github.com/notifications/unsubscribe-auth/AENLAGHXIC2V6N3D4KIBFMDYDTCPTAVCNFSM6AAAAAA7EOV7BGVHI2DSMVQWIX3LMV43ASLTON2WKOZRHE4DKNBZHE3DGOI . You are receiving this because you are subscribed to this thread.Message ID: @.***>

dwizle81 commented 11 months ago

Hi, I can't think of any reason why operation would be changed if the displays and LEDs were omitted. Probably a bunch of other components can be removed as well. Good luck with the build.

a couple more questions do you still have the part numbers for the 2 lower 8pin encoders you use seems the BOM is corrupted or compatible with digikey or https://easyeda.com/

BlueFinBima commented 11 months ago

As best I can tell, they are ALPS EC11E18244A5

dwizle81 commented 10 months ago

Keep getting a compilation error using IDE 2.2.1

Compilation error: 'IotWebConfParameter' does not name a type; did you mean 'IotWebConfParameter_h'?

IotWebConf iotWebConf(apName, &dnsServer, &server, wifiInitialApPassword, CONFIG_VERSION); IotWebConfParameter ipAddressParam("IP address", "ipAddress", ipAddressValue, STRING_LEN, "text", NULL, "10.1.1.48"); IotWebConfParameter gatewayParam("Gateway", "gateway", gatewayValue, STRING_LEN, "text", NULL, "10.1.1.1"); IotWebConfParameter netmaskParam("Subnet mask", "netmask", netmaskValue, STRING_LEN, "text", NULL, "255.255.255.0");

any ideas on how to fix??

BlueFinBima commented 10 months ago

Keep getting a compilation error using IDE 2.2.1

Compilation error: 'IotWebConfParameter' does not name a type; did you mean 'IotWebConfParameter_h'?

IotWebConf iotWebConf(apName, &dnsServer, &server, wifiInitialApPassword, CONFIG_VERSION); IotWebConfParameter ipAddressParam("IP address", "ipAddress", ipAddressValue, STRING_LEN, "text", NULL, "10.1.1.48"); IotWebConfParameter gatewayParam("Gateway", "gateway", gatewayValue, STRING_LEN, "text", NULL, "10.1.1.1"); IotWebConfParameter netmaskParam("Subnet mask", "netmask", netmaskValue, STRING_LEN, "text", NULL, "255.255.255.0");

any ideas on how to fix??

I have not touched this code in a very long time. I do remember that IotWebConf package was a challenge because it kept changing, so it is possible, that it kept on moving after my last compilation. All I can suggest is to look at the documentation & examples for the level of the package you're using, and modify the source accordingly. I think trying to pick a historical level of the package which allows this to compile is probably going to take you longer.