Digital production
Naama Hadad
second year
Exercise 1 -
We were asked to build a three-dimensional model that cannot be built by casting or laser cutting
3D printing



I chose to create from 2 shapes that create a closed and interesting shape. I had to define a material thickness that would allow the small balls inside to move
Exercise 2-


Exercise 3-
Experience 1-Build a rail with supports that will drive only horizontal movement of the object



The first attempt was not successful because the measurements were exact and the moving part should fit exactly into the rail, but it didn't work
Experience 2 - I built a rail with an object that moves horizontally only with the use of supports for pegs and made a wider spread of movement between the part of the rail and the object that moves on it




Drawer
- creating a drawer that moves on a hinge

Electronics
const int DOLK_light_naama=4;
const int DOLK_light1_naama=5;
const int DOLK_light2_naama=6;
void setup() {
pinMode(DOLK_light_naama,OUTPUT);
pinMode(DOLK_light1_naama,OUTPUT);
pinMode(DOLK_light2_naama,OUTPUT);
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(DOLK_light_naama,HIGH);
delay(500);
digitalWrite(DOLK_light_naama,LOW);
delay(500);
digitalWrite(DOLK_light1_naama,HIGH);
delay(500);
digitalWrite(DOLK_light1_naama,LOW);
delay(500);
digitalWrite(DOLK_light2_naama,HIGH);
delay(500);
digitalWrite (DOLK_light2_naama,LOW);
delay(500);
}
