Electronic – My first PCB – How to run signals off of the board

schematics

I'm an amateur 3D printed Robotics maker (youtube.com/PatchBOTS). I come at this from the 3D printing/engineering side and I'm learning the electronics and coding as I go. Up till now I've been buying prefab boards and wiring them together or making my own little circuit boards on solderable breadboard/scratch board type pieces. i'm at a point now where I want to learn how to make my own circuit boards to save space/time/etc. I have never one this before, butenter image description here I have a copy of Autodesk Eagle and been following Jeremy Blums tutorials, but I have still run into issues I was hoping you could help with.

I'm making a Star Wars blaster gun. It has two triggers:
1. Single Shot trigger–> sends ground signal to soundboard pin0, also sends ground signal to base of PNP which activates the LED at the end of the barrel.
2. Multi Shot trigger–>sends ground signal to soundboard pin1, also sends ground singla to base of PNP which goes to pin8 of a 555 timer which blinks the same LED in sequence with the sound. This is controlled with a 1k variable resistor.

I want to make a board out of this, but I'm running into some issues. 1. How do I denote a "pinout" I basically want through holes at the end of the board for all the black text in the image. I'm not sure what to put there for "leaves board here". 2. How do I add the variable resistor along pins 6,7,8. The 555 timer is out of order and I have no idea how to even add in a variable resistor.
3. Other than my two problems, can you see anything else wrong with this schematic. I'm very new to this and I'm sure I have something backwards or upside down. Any help would be appreciated.
Updated Schematic
EDIT: I've update the schematic to show the HEADERS recommended by others! Thank you guys! What about the variable resistor? How can I set that up along 3 pins that aren't near each other?
Schematic3

EDIT2: I think I have the variable resistor figured out. WI think this is right? Can anyone see anything jump out at them?

Best Answer

If you want a group of header pins (through holes) to end up together on the board, consider using a single header with more pins.

You show your schematic here, but not your board view. The schematic should be arranged so as to make the circuit as easy as possible to understand in function. This is why the pins on the 555 timer are differently ordered. The board view is where you actually arrange components, draw circuit board traces, etc. In board view, eagle will show rough physical sizes of components, what will be printed on the circuitboard (in ink), and it will automatically connect the pins of all of your added devices with "airwires" which are just little yellow lines that show every connection on the board. You then position components and replace the airwires with circuitboard traces using the routing tool. If you don't want to manually draw your circuit traces, or it's too difficult to figure out, you can use the autorouter, which will find a solution to the board based on parameters you set, although most humans find they can outperform the autorouter in both grace and practicality. I like to use it to solve overall plans or tricky parts, and then replace it with my own more graceful traces. You end up with something like this:

circuitboard layout

You can see 2 teal dots on the LM393N chip, these are vias (connections from the top to the bottom of the circuitboard) that I haven't yet found a way to avoid without perturbing more important parts of the board. I ended up selecting acceptable vias, and also selecting the location of these, based on autorouter solutions.

The inductor shown on the circuitboard is not the one I will be using, but it has a matching pin arrangement and rough size. I had to find it by manually going through every inductor in the catalog.

You can fish through the device catalog to find another variable resistor/potentiometer that has an adequately similar pin placement, and if that doesn't work there are tutorials on how to add components to your catalog (I added the MIC4428 shown)

One little trick I've found so far is when you first shift to board view, and your components are all jumbled together, drag them far apart and individually grab them, see what they're connected to, and try to shift things around to minimize the number of yellow lines that cross. For components that require short or wide traces, you can still prioritize them by putting them together on the board first before figuring out the rest of the jumble.

Related Topic