# Electronics Design - Week 6 ---- ## Assignments > **Electronics Design** > > **group assignment** > - use the test equipment in your lab to observe > the operation of a microcontroller circuit board > **individual assignment** > - use an EDA tool to design a development board > - that uses parts from the inventory to interact > - and communicate with an embedded microcontroller > - extra credit: try another design workflow > - extra credit: simulate your design > - extra credit: design a case around your design ## Group Assignment TODO ### Notes - Arduino - not precice voltage, if from laptop ## Individual Assignment ### KiCAD #### Tutorial Notes - KiCAD version 8 because in Version 9 SVG-Export does not work with the fab-libraries [Tutorial](https://www.youtube.com/watch?v=aVUqaB0IMh4) ##### General - VSS .. digital ground - VSSA .. analog ground (usually same ground as VSS) - R == Ohm - VDDA most more sensitive (analog voltage) - NRST .. Reset Pin, where N denotes negated - Crystal usually GND24 (ground on 2 and 4) - FootPrints .. physical layout of components used on PCB - importend for buying parts and very importend for connectors **decopling capacitor** - close to circuit - for small local energy storage - e.g. when MCU switches, needs quick switch in transient of currents **Filtering** - done by resistor, inductor, ferrite bead - ferrite bead behaves resistant at a high frequency (e.g. 120Ohm at 100MHz) **USB** - Power rails typically very noisy -> additional filtering (above) **Gerber Files/Manufacturer Output** - on project -> export ##### Schematic Editor **General** - Layout in different, logically fitting sections - Flags used to indicate for ERC (below) - like e.g. PWR_FLAG used to indicate a power source from e.g. a filter actual power source **Keys** - middle mouse .. Move plane - a .. (A)dd components - ESC .. Cancel KiCAD command - p .. add (P)ower component - e on a component .. (E)dit component - w .. draw a (W)ire (connection) - double click on value symbol (C for capacity, R for resistance etc) .. edit value - double click on component -> click in footprint -> next to it 'library' - r .. rotate - l .. add (L)able (help when creating a layout) - x/y .. flip symbol layout vertical/horizontal - q .. places 'DO NOT CONNECT' flag (used for rule-check) - m .. (M)ove selected components - 'Insert'-Key .. repeats (only?) dont connect - t .. insert (T)ext **Top Buttons** - 'Annotate Schematics'-Button .. change labels of components automatically - 'Electrical Rules-Checker' .. check for sanity of schematic (ERC) - 'Assign FootPrints' .. choose the footprints used for your components - in view, right-click on footprint -> view footprint - in view, top left '3D View' (alt+3) -> opens 3D-Model of footprint with component - 'Bill of Material' to generate Items needed for board ##### PCB Editor **General** - first set board details, like how many layers, have powerlanes?,etc. - 'Ratsnest' -> lines showing the connection not routed yet - for cutting the board, choose layer 'Edge.Cuts' - then just draw lines, those then cut the board - you can change the footprint of only the instance clicked on - double click component -> 'Edit FootPrint' - when near the MCU, try to 'fin out' the lanes, so that they are as far from each other - no vias on silkstream - copper zone solid pad -> prevent 'Tombstoning'?? - help connectivity and lower inductions **Board Setup** - top left 'Board Setup'-button - Layers: - Fab .. for assembling the board - Silkscreen .. for text and outlines on the PCB - Mask .. prevent solder bridging - Cu .. copper layer - lower layer mostly power layer -> keep high from low voltage separated - Board finish - Copper finish usually Gold -> ENIG .. Emersion Nickle Gold - Design Rules - dependent on the producer - IMPORTANT to copy those into KiCAD - Predefined Sizes - can be used while editing - good defaults: [IMAGE] **Keys** - Alt+3 .. open (3)D-Viewer - m .. (M)ove components - Ctrl+Shift+m .. (M)easurement - r .. (R)otate - Shift+Leftklick .. select multiple, as usual - double click on component -> in 3d tab, you can change/add 3d models to footprints - Ctrl+Shift+z .. draw a filled zone, used for ground? - set some settings for fill, select, which lane (e.g. ground) - draw outline for zone - when finished, press 'b' - left buttons 'Draw Zone Fills' and 'Draw Zone Outline' to toggle zone - x .. start routing - v .. make a hole to another layer and then x to create a trace, and v again to go back up, x to trace again (vxvx) **Top Buttons** - 'Update PCB from Schematics'-Button (F8) to import footprints - 'Design Rules Checker' again important after finishing #### Tutorial Outcome ##### Schematics ![IMAGE](../_static/Week6/tutorial_schematics.jpg) ##### Traces ![IMAGE](../_static/Week6/tutorial_traces.jpg) ##### 3D Model ![IMAGE](../_static/Week6/tutorial_3d.jpg) #### Assignment PCB I have chosen to implement a small version of my final project to test a bit to work with MIDI and controlling the lights with it. ##### Schematics ![IMAGE](../_static/Week6/assignment_progress_schematics_error.jpg) ![IMAGE](../_static/Week6/assignment_progress_schematics_RCS_error.png) ![IMAGE](../_static/Week6/assignment_progess_schematics_ok.jpg) ![IMAGE](../_static/Week6/assignment_progress_schematics_RCS_no_error.png) **Outcome** ![IMAGE](../_static/Week6/assignment_schematics.jpg) [Schematics File](../_static/Week6/Assignment.pdf) ##### Traces ![IMAGE](../_static/Week6/assignment_progress_traces_ratsnest.jpg) ![IMAGE](../_static/Week6/assignment_progress_traces.jpg) **Outcome** ![IMAGE](../_static/Week6/assignment_traces.jpg) But there are still errors and I forgot the design rules for producing it. ##### 3D Model **Outcome** ![Model](../_static/Week6/assignment_3d.jpg) ### Verilog Unfortunately I couldn't find time to try it out but I really would love to, because I liked what Neil showed use the programming way :D