WEEK 4 / Feb 15
Electronics production
The assignment
USING THE ROLAND MINI MILL MODELA
We made the Hello.isp PCB using the Roland modela.
the cutters that are used in the mini milling, the lower one is the conventional cutter we are going to use for this assignment, it is .4mm diameter end mill.
The copper was routed away with the selected routing depth. Once the depth was verified, routing of the traces was performed. The traces can be cleaned with some sanding.
Once we place the PCB is mounted on the milling machine working space and the gerber program is loaded it begins to mill the copper out and draw the traces.
Placing electronic components
Testing the board
1. installing git
2. cloning fabmodules github folder
3. installing nodejs
4. installing Python, Python serial library and Python TKinter
5. running npm install
6. running npm start
Installing
We uploaded the program with an Arduino programmer.
INSTALLING ATTINY84-44 ON ARDUINO
You need to go to “preferences” (Press CMD Space)
Go to: Additional boards Manager Url: http://drazzy.com/package_drazzy.com_index.json
ArduinoOnOtherAtmelChips: http://playground.arduino.cc/Main/ArduinoOnOtherAtmelChips
PROGRAMING WITH ARDUINO DESKTOP
BLINKING TEST @ 1000
void setup() {
pinMode (0, OUTPUT) ;
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(0,HIGH) ,
delay(1000) ;
digitalWrite(0, LOW) ;
delay (100) ;
}
BUTTON TEST @ 1000
void setup() {
pinMode (0, OUTPUT) ;
}
void loop() {
// put your main code here, to run repeatedly:
if(digitalRead(1)==HIGH)
{
digitalWrite(0, HIGH) ;
}
else
{
digitalWrite(0, LOW) ;
}
}z
This is the final result
Oscar Velázquez