7. Electronics design¶
This week we had to customize our own pcb.
Research¶
This weeks task was anything but easy. This week we were assigned the task of designing and programming our own board. for this task I used Autodesk EAGLE to design the schematic and print layout for my PCB
In order for me to do the I first had to set up a ne project file. T did this by clicking the project section in the home menu.then clicked new project. Once I had the new project I rented something I would be familiar with. from there I open my new project folder in EAGLE.
Once I had the new project folder opened I had to create both a schematic and board design to be printed. I first sleety the schematic option. And then extracted all of my comcpnenet.
This software didn’t come preloaded into the softwareI needed so I had to import the components inventory form the fab lab website into the EAGLE libraries folder.
Useful links¶
Code Example¶
Use the three backticks to separate code.
// the setup function runs once when you press reset or power the board void setup() { // initialize digital pin LED_BUILTIN as an output. pinMode(LED_BUILTIN, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW delay(1000); // wait for a second }
Gallery¶
Video¶
From Vimeo¶
Sound Waves from George Gally (Radarboy) on Vimeo.