top of page
contact
Exercise 1 -

We were asked to build a three-dimensional model that cannot be built by casting or laser cutting

3D printing

לולאה תמונה_edited.png

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-

תמונה panlnig tool_edited.png
panlnig tool תמונה_edited.png
contact
Exercise 3-
Experience 1-Build a rail with supports that will drive only horizontal movement of the object
מסילה_edited.png
ניסיון 1_edited.png
בגדרות כורה תרגיל 3,.png
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
WhatsApp Image 2023-02-14 at 21.34_edite
JVN_edited.png
JVN_edited.png
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);

}

bottom of page