Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to create an own adapter? #47

Closed
necroware opened this issue Jan 31, 2023 · 9 comments
Closed

How to create an own adapter? #47

necroware opened this issue Jan 31, 2023 · 9 comments

Comments

@necroware
Copy link
Owner

necroware commented Jan 31, 2023

It is then relatively easy for most hobby/amateur-tinkers to solder the parts by hand as it only has very few simple component, see:

https://www.youtube.com/watch?v=HUmbvfqP784&ab_channel=chadaustinak

Ordering prototype PCB and assembling yourself

As this is open-source hardware you should know as an option that it is today relatively easy (and inexpensive) to just submit the KiCad PCB layout files directly to some PCB-prototype board manufacturers like Oshpark or PCBWay who will take it then make + ship a few of the PCB boards to you, all without you having to use KiCad yourself or even having to understand the PCB layout:

FYI, Chinese PCB manufacturers will usually make around 20 simple PCB board like this for less than $10 and ship them to you for around $20, so depending on your country's import tax you have those at home for around $30-40 in around a months time.

E.i. just buy the ones from the project BOM (Bill-Of-Matierials) list

https://github.com/necroware/gameport-adapter/blob/main/README.md#bill-of-materials-bom

Note! It is not recommended to buy the Mini-USB variant of Arduino Pro Micro as its header is wider than USB-C and Micro-USB variants), and it is not recommended to buy the Micro-USB variant of Arduino Pro Micro as it is too easy to break the connector.

Bill of materials (BOM)

The hardware is super simple. To build an adapter you'll need the PCB from this project and following parts:

Part Qty LCSC # Digikey # Mouser Electronics # Comment
CONN1 1 C77835 609-5371-ND 523-L77SDA15SA4CH4F DB15 female connector
R1..R4 4 C172965 13-MFR-25FTE52-100KCT-ND 603-MFR-25FTE52-100K 100 kOhm resistors
SW1 1 C15781 2449-KG04ET-ND 642-DS04T DIP-4 switch
U1 1 C72120 ED3051-5-ND 649-DILB24P-223TLF DIP24 Socket (optional)
U1 1 N/A 1568-1060-ND 474-DEV-12640 Arduino Pro Micro (ATmega32U4 16MHz, 5V), including two 12 pin header connectors, MicroUSB version (see "Known issues")

Tip! Some other user recommended buying an enclosure case: Hammond Manufacturing 1551RTBU, Digi-Key Part # HM1142-ND.

You can otherwise 3D-print your own case, see example -> https://www.thingiverse.com/thing:5457006

Firmware

Once you have it and want to flash the firmware yourself (to ensure you have the latest version), you can do that yourself as well.

  1. Download source code files from -> https://github.com/necroware/gameport-adapter/tree/main/firmware/gameport-adapter
  2. Download the Arduino IDE from -> https://www.arduino.cc/en/software
  3. Connect the Adapter with your USB cable.
  4. Open "gameport-adapter.ino" included in the source files.
  5. In "Tools" -> Port -> select the virtual COM port that says (Arduino Micro).
  6. In "Sketch" -> select "Upload" which will compile the firmware and upload it to the Arduino.
  7. You are done.

Originally posted by @Hedda in #12 (comment)

@Hedda
Copy link

Hedda commented Jan 31, 2023

As this is open-source hardware you should know as an option that it is today relatively easy (and inexpensive) to just submit the KiCad PCB layout files directly to some PCB-prototype board manufacturers like Oshpark or PCBWay who will take it then make + ship a few of the PCB boards to you, all without you having to use KiCad yourself or even having to understand the PCB layout:

FYI, today a few of those and other PCB manufacturers (including Oshpark and PCBWay) have communities / community website that allows anyone to create and share projects similar to the linked shared project on Oshpark, and doing so can help make it even easier for less experienced people that might be new to that part of the hobby to order their own PCB board directly.

https://oshpark.com/shared_projects
https://oshpark.com/shared_projects/rzwJjMoP

https://www.pcbway.com/blog/help_center/How_to_Share_Projects_in_PCBWay_Community_d27959dc.html
https://www.pcbway.com/project/
https://www.pcbway.com/project/shareproject/

PCBWay is probably the currently largest at driving its community projects and the part of its store for sharing your projects.

PS: PCBWay also offer 3D-printing services in case want to have an enclosure like https://www.thingiverse.com/thing:5457006

@creopard
Copy link
Contributor

Also make sure to get the right Arduino board, as they may differ in width:
https://www.youtube.com/watch?v=0losEHACB6A

@Hedda
Copy link

Hedda commented Jan 31, 2023

Oh, btw, most open-source hardware licenses allow anyone to make the board to then resell the board and/or product, see ex:

PS: Open-source hardware licenses does however usually not extend to the copyrighted name of the creator or an unique name that the original creator has given to the project/product, so it would normally not be allowed to market and sell it as "Necroware" product, hence a disclaimer is usually used by others to inform that it is not official or sold by the original creator.

@Hedda
Copy link

Hedda commented Jan 31, 2023

@necroware You might want to consider enabling the GitHub Discussions for this repository (GitHub collaborative communication forum feature for repositories) and move this there as it allows for collaboration threads without clogging up the issues section:

https://docs.github.com/en/discussions/quickstart

https://docs.github.com/en/discussions

https://github.com/features/discussions

See examples:

https://github.com/community/community/discussions

https://github.com/orgs/community/discussions/categories/discussions

@Lowe0
Copy link

Lowe0 commented Feb 9, 2023

I've built a few of these using boards from OSHpark. They work pretty well, although the resistors can be a bit of a pain. I think a lead-forming tool will help a lot with that.

Edit: nope, a lead-forming tool doesn't help. The commonly available ones only go down to 0.4"; the resistor holes on this design are spaced 0.3". This probably makes sense for machine assembly, but for hand assembly, 0.3" for a resistor that's 0.25" without any leads at all is super-tight.

I'm not an electrical engineer, so I can't say what the impact would be functionally, but for hand assembly, an extra 0.1" on the resistor through hole would be a massive help. It looks like there's room for it, too. Thoughts, @necroware ?

@Hedda
Copy link

Hedda commented Feb 13, 2023

Ordering prototype PCB and assembling yourself

As this is open-source hardware you should know as an option that it is today relatively easy (and inexpensive) to just submit the KiCad PCB layout files directly to some PCB-prototype board manufacturers like Oshpark or PCBWay who will take it then make + ship a few of the PCB boards to you, all without you having to use KiCad yourself or even having to understand the PCB layout:

FYI, Chinese PCB manufacturers will usually make around 20 simple PCB board like this for less than $10 and ship them to you for around $20, so depending on your country's import tax you have those at home for around $30-40 in around a months time.

E.i. just buy the ones from the project BOM (Bill-Of-Matierials) list

https://github.com/necroware/gameport-adapter/blob/main/README.md#bill-of-materials-bom

Tip on other one-stop-shop turnkey PCB and embedded circuit board manufacturers partners which offer open project pages:

@necroware
Copy link
Owner Author

Done.

@Hedda
Copy link

Hedda commented Apr 17, 2023

@necroware Recommend moving this to the suggestion section under discussions -> https://github.com/necroware/gameport-adapter/discussions

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants