necroware/gameport-adapter

How to create a new Pull / Merge Request?

Closed this issue · 1 comments

Hello

I am a little bit unsafe about how to use github, in particular since there is the new token login.

However, I made a driver for 1995's CH F16 Combat Stick. Tested with USB Game Controller Setup and MS Flight Sim X.
3 axes
10 buttons
1 Hat with 4 positions

Using

    case 0b1100:
      return new CHF16CombatStick;

But I have absolutely no idea, how to upload this.

I made

git pull
git branch ch-f16
git checkout ch-f16
git status
git add *.ino
git add *.h
git commit -m "Added driver for CH F16 Combat Stick"
git push --set-upstream origin ch-f16

The last line failed, because of login with user name and password.

How can I publish my little work?

BTW: Well done project. It is first time, I soldered on a PCB.
Also, first time, I worked with Arduino Pro Micro.
And I learned the hard way to restore the bootloader (https://www.shellhacks.com/arduino-pro-micro-reset-restore-bootloader/).

But works like a charm in MS Flight Sim!

Files:
CH-f16-combat-stick.zip

Thank you in advance!

Stefan

Hello

I have to apologize. After reading github documentation, I was able to create the pull request.

Stefan