<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
	<id>https://curlybraces.be/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sofiaerzini</id>
	<title>{} - Contributions de l’utilisateur [fr]</title>
	<link rel="self" type="application/atom+xml" href="https://curlybraces.be/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sofiaerzini"/>
	<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/Sp%C3%A9cial:Contributions/Sofiaerzini"/>
	<updated>2026-05-10T22:04:31Z</updated>
	<subtitle>Contributions de l’utilisateur</subtitle>
	<generator>MediaWiki 1.35.10</generator>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2775</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2775"/>
		<updated>2018-12-12T21:03:45Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1ST STEP, control the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao.jpg]]&lt;br /&gt;
&lt;br /&gt;
The button representes the shot taken by the camera, this shot will activate the motor making it rotate a certain amount of degrees.&lt;br /&gt;
&lt;br /&gt;
The Code used (based on**):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
  &lt;br /&gt;
  #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
  // change this to the number of steps on your motor&lt;br /&gt;
  #define STEPS 32&lt;br /&gt;
  &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
  Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
  const int camera = 2;&lt;br /&gt;
  int pictureTaken;&lt;br /&gt;
  int buttonState = 0;&lt;br /&gt;
  &lt;br /&gt;
  void setup() {&lt;br /&gt;
    Serial.begin(9600);&lt;br /&gt;
    pinMode(camera, INPUT);&lt;br /&gt;
    stepper.setSpeed(200);&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  void loop() {&lt;br /&gt;
  &lt;br /&gt;
   buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
   if (buttonState == HIGH) {&lt;br /&gt;
     Serial.println(&amp;quot;Motor On!&amp;quot;);&lt;br /&gt;
     pictureTaken = 250;&lt;br /&gt;
     stepper.step(pictureTaken);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
   else {&lt;br /&gt;
     Serial.println (&amp;quot;Motor Off!&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3RD STEP Add a second motor to the circuit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some simple changes were made to the code:&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper2(STEPS, 4, 6, 5, 7);//second motor&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 const int camera = 2;&lt;br /&gt;
 int pictureTaken;&lt;br /&gt;
 int pictureTaken2; // second motor&lt;br /&gt;
 int buttonState = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   pinMode(camera, INPUT);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
   stepper2.setSpeed(200);//second motor&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
  buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
  if (buttonState == HIGH) {&lt;br /&gt;
    Serial.println(&amp;quot;Motors On!&amp;quot;);&lt;br /&gt;
    pictureTaken = 256;//number of steps the motor makes after camera shot &lt;br /&gt;
   // (1/8 of a rotation)&lt;br /&gt;
    pictureTaken2 = 512; // second motor&lt;br /&gt;
   // (1/4 of a rotation)&lt;br /&gt;
    stepper.step(pictureTaken);&lt;br /&gt;
    stepper2.step(pictureTaken2);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
  }&lt;br /&gt;
 &lt;br /&gt;
  else {&lt;br /&gt;
    Serial.println (&amp;quot;Motors Off!&amp;quot;);&lt;br /&gt;
  }&lt;br /&gt;
   &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao 2nd motor.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
**(https://forum.arduino.cc/index.php?topic=440856.0)&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2774</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2774"/>
		<updated>2018-12-12T21:03:01Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, control the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao.jpg]]&lt;br /&gt;
&lt;br /&gt;
The button representes the shot taken by the camera, this shot will activate the motor making it rotate a certain amount of degrees.&lt;br /&gt;
&lt;br /&gt;
The Code used (based on**):&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
  &lt;br /&gt;
  #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
  // change this to the number of steps on your motor&lt;br /&gt;
  #define STEPS 32&lt;br /&gt;
  &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
  Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
  const int camera = 2;&lt;br /&gt;
  int pictureTaken;&lt;br /&gt;
  int buttonState = 0;&lt;br /&gt;
  &lt;br /&gt;
  void setup() {&lt;br /&gt;
    Serial.begin(9600);&lt;br /&gt;
    pinMode(camera, INPUT);&lt;br /&gt;
    stepper.setSpeed(200);&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  void loop() {&lt;br /&gt;
  &lt;br /&gt;
   buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
   if (buttonState == HIGH) {&lt;br /&gt;
     Serial.println(&amp;quot;Motor On!&amp;quot;);&lt;br /&gt;
     pictureTaken = 250;&lt;br /&gt;
     stepper.step(pictureTaken);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
   else {&lt;br /&gt;
     Serial.println (&amp;quot;Motor Off!&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3RD STEP Add a second motor to the circuit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some simple changes were made to the code:&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper2(STEPS, 4, 6, 5, 7);//second motor&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 const int camera = 2;&lt;br /&gt;
 int pictureTaken;&lt;br /&gt;
 int pictureTaken2; // second motor&lt;br /&gt;
 int buttonState = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   pinMode(camera, INPUT);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
   stepper2.setSpeed(200);//second motor&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
  buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
  if (buttonState == HIGH) {&lt;br /&gt;
    Serial.println(&amp;quot;Motors On!&amp;quot;);&lt;br /&gt;
    pictureTaken = 256;//number of steps the motor makes after camera shot &lt;br /&gt;
   // (1/8 of a rotation)&lt;br /&gt;
    pictureTaken2 = 512; // second motor&lt;br /&gt;
   // (1/4 of a rotation)&lt;br /&gt;
    stepper.step(pictureTaken);&lt;br /&gt;
    stepper2.step(pictureTaken2);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
  }&lt;br /&gt;
 &lt;br /&gt;
  else {&lt;br /&gt;
    Serial.println (&amp;quot;Motors Off!&amp;quot;);&lt;br /&gt;
  }&lt;br /&gt;
   &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao 2nd motor.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
**(https://forum.arduino.cc/index.php?topic=440856.0)&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2773</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2773"/>
		<updated>2018-12-12T20:59:52Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao.jpg]]&lt;br /&gt;
&lt;br /&gt;
The button representes the shot taken by the camera, this shot will activate the motor making it rotate a certain amount of degrees.&lt;br /&gt;
&lt;br /&gt;
The Code used (based on**):&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
  &lt;br /&gt;
  #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
  // change this to the number of steps on your motor&lt;br /&gt;
  #define STEPS 32&lt;br /&gt;
  &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
  Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
  const int camera = 2;&lt;br /&gt;
  int pictureTaken;&lt;br /&gt;
  int buttonState = 0;&lt;br /&gt;
  &lt;br /&gt;
  void setup() {&lt;br /&gt;
    Serial.begin(9600);&lt;br /&gt;
    pinMode(camera, INPUT);&lt;br /&gt;
    stepper.setSpeed(200);&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  void loop() {&lt;br /&gt;
  &lt;br /&gt;
   buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
   if (buttonState == HIGH) {&lt;br /&gt;
     Serial.println(&amp;quot;Motor On!&amp;quot;);&lt;br /&gt;
     pictureTaken = 250;&lt;br /&gt;
     stepper.step(pictureTaken);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
   else {&lt;br /&gt;
     Serial.println (&amp;quot;Motor Off!&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
3RD STEP Add a second motor to the circuit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some simple changes were made to the code:&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper2(STEPS, 4, 6, 5, 7);//second motor&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 const int camera = 2;&lt;br /&gt;
 int pictureTaken;&lt;br /&gt;
 int pictureTaken2; // second motor&lt;br /&gt;
 int buttonState = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   pinMode(camera, INPUT);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
   stepper2.setSpeed(200);//second motor&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
  buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
  if (buttonState == HIGH) {&lt;br /&gt;
    Serial.println(&amp;quot;Motors On!&amp;quot;);&lt;br /&gt;
    pictureTaken = 256;//number of steps the motor makes after camera shot &lt;br /&gt;
   // (1/8 of a rotation)&lt;br /&gt;
    pictureTaken2 = 512; // second motor&lt;br /&gt;
   // (1/4 of a rotation)&lt;br /&gt;
    stepper.step(pictureTaken);&lt;br /&gt;
    stepper2.step(pictureTaken2);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
  }&lt;br /&gt;
 &lt;br /&gt;
  else {&lt;br /&gt;
    Serial.println (&amp;quot;Motors Off!&amp;quot;);&lt;br /&gt;
  }&lt;br /&gt;
   &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao 2nd motor.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
**(https://forum.arduino.cc/index.php?topic=440856.0)&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2772</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2772"/>
		<updated>2018-12-12T20:56:55Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao.jpg]]&lt;br /&gt;
&lt;br /&gt;
The button representes the shot taken by the camera, this shot will activate the motor making it rotate a certain amount of degrees.&lt;br /&gt;
&lt;br /&gt;
The Code used (based on**):&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
  &lt;br /&gt;
  #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
  // change this to the number of steps on your motor&lt;br /&gt;
  #define STEPS 32&lt;br /&gt;
  &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
  Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
  const int camera = 2;&lt;br /&gt;
  int pictureTaken;&lt;br /&gt;
  int buttonState = 0;&lt;br /&gt;
  &lt;br /&gt;
  void setup() {&lt;br /&gt;
    Serial.begin(9600);&lt;br /&gt;
    pinMode(camera, INPUT);&lt;br /&gt;
    stepper.setSpeed(200);&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  void loop() {&lt;br /&gt;
  &lt;br /&gt;
   buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
   if (buttonState == HIGH) {&lt;br /&gt;
     Serial.println(&amp;quot;Motor On!&amp;quot;);&lt;br /&gt;
     pictureTaken = 250;&lt;br /&gt;
     stepper.step(pictureTaken);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
   else {&lt;br /&gt;
     Serial.println (&amp;quot;Motor Off!&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
3RD STEP Add a second motor to the circuit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some simple changes were made to the code:&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper2(STEPS, 4, 6, 5, 7);//second motor&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 const int camera = 2;&lt;br /&gt;
 int pictureTaken;&lt;br /&gt;
 int pictureTaken2; // second motor&lt;br /&gt;
 int buttonState = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   pinMode(camera, INPUT);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
   stepper2.setSpeed(200);//second motor&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
  buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
  if (buttonState == HIGH) {&lt;br /&gt;
    Serial.println(&amp;quot;Motors On!&amp;quot;);&lt;br /&gt;
    pictureTaken = 256;//number of steps the motor makes after camera shot &lt;br /&gt;
   // (1/8 of a rotation)&lt;br /&gt;
    pictureTaken2 = 512; // second motor&lt;br /&gt;
   // (1/4 of a rotation)&lt;br /&gt;
    stepper.step(pictureTaken);&lt;br /&gt;
    stepper2.step(pictureTaken2);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
  }&lt;br /&gt;
 &lt;br /&gt;
  else {&lt;br /&gt;
    Serial.println (&amp;quot;Motors Off!&amp;quot;);&lt;br /&gt;
  }&lt;br /&gt;
   &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao 2nd motor.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2771</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2771"/>
		<updated>2018-12-12T20:55:57Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao.jpg]]&lt;br /&gt;
&lt;br /&gt;
The button representes the shot taken by the camera, this shot will activate the motor making it rotate a certain amount of degrees.&lt;br /&gt;
&lt;br /&gt;
The Code used (based on**):&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
  &lt;br /&gt;
  #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
  // change this to the number of steps on your motor&lt;br /&gt;
  #define STEPS 32&lt;br /&gt;
  &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
  Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
  const int camera = 2;&lt;br /&gt;
  int pictureTaken;&lt;br /&gt;
  int buttonState = 0;&lt;br /&gt;
  &lt;br /&gt;
  void setup() {&lt;br /&gt;
    Serial.begin(9600);&lt;br /&gt;
    pinMode(camera, INPUT);&lt;br /&gt;
    stepper.setSpeed(200);&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  void loop() {&lt;br /&gt;
  &lt;br /&gt;
   buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
   if (buttonState == HIGH) {&lt;br /&gt;
     Serial.println(&amp;quot;Motor On!&amp;quot;);&lt;br /&gt;
     pictureTaken = 250;&lt;br /&gt;
     stepper.step(pictureTaken);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
   else {&lt;br /&gt;
     Serial.println (&amp;quot;Motor Off!&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
3RD STEP Add a second motor to the circuit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some simple changes were made to the code:&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper2(STEPS, 4, 6, 5, 7);//second motor&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 const int camera = 2;&lt;br /&gt;
 int pictureTaken;&lt;br /&gt;
 int pictureTaken2; // second motor&lt;br /&gt;
 int buttonState = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   pinMode(camera, INPUT);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
   stepper2.setSpeed(200);//second motor&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
  buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
  if (buttonState == HIGH) {&lt;br /&gt;
    Serial.println(&amp;quot;Motors On!&amp;quot;);&lt;br /&gt;
    pictureTaken = 256;//number of steps the motor makes after camera shot &lt;br /&gt;
   // (1/8 of a rotation)&lt;br /&gt;
    pictureTaken2 = 512; // second motor&lt;br /&gt;
   // (1/4 of a rotation)&lt;br /&gt;
    stepper.step(pictureTaken);&lt;br /&gt;
    stepper2.step(pictureTaken2);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
  }&lt;br /&gt;
 &lt;br /&gt;
  else {&lt;br /&gt;
    Serial.println (&amp;quot;Motors Off!&amp;quot;);&lt;br /&gt;
  }&lt;br /&gt;
   &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=Fichier:Diagrama_c_butao_2nd_motor.jpg&amp;diff=2770</id>
		<title>Fichier:Diagrama c butao 2nd motor.jpg</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=Fichier:Diagrama_c_butao_2nd_motor.jpg&amp;diff=2770"/>
		<updated>2018-12-12T20:54:59Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2769</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2769"/>
		<updated>2018-12-12T20:42:16Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao.jpg]]&lt;br /&gt;
&lt;br /&gt;
The button representes the shot taken by the camera, this shot will activate the motor making it rotate a certain amount of degrees.&lt;br /&gt;
&lt;br /&gt;
The Code used (based on**):&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
  &lt;br /&gt;
  #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
  // change this to the number of steps on your motor&lt;br /&gt;
  #define STEPS 32&lt;br /&gt;
  &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
  Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
  const int camera = 2;&lt;br /&gt;
  int pictureTaken;&lt;br /&gt;
  int buttonState = 0;&lt;br /&gt;
  &lt;br /&gt;
  void setup() {&lt;br /&gt;
    Serial.begin(9600);&lt;br /&gt;
    pinMode(camera, INPUT);&lt;br /&gt;
    stepper.setSpeed(200);&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  void loop() {&lt;br /&gt;
  &lt;br /&gt;
   buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
   if (buttonState == HIGH) {&lt;br /&gt;
     Serial.println(&amp;quot;Motor On!&amp;quot;);&lt;br /&gt;
     pictureTaken = 250;&lt;br /&gt;
     stepper.step(pictureTaken);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
   else {&lt;br /&gt;
     Serial.println (&amp;quot;Motor Off!&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
3RD STEP Add a second motor to the circuit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some simple changes were made to the code:&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper2(STEPS, 4, 6, 5, 7);//second motor&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 const int camera = 2;&lt;br /&gt;
 int pictureTaken;&lt;br /&gt;
 int pictureTaken2; // second motor&lt;br /&gt;
 int buttonState = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   pinMode(camera, INPUT);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
   stepper2.setSpeed(200);//second motor&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
  buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
  if (buttonState == HIGH) {&lt;br /&gt;
    Serial.println(&amp;quot;Motors On!&amp;quot;);&lt;br /&gt;
    pictureTaken = 256;//number of steps the motor makes after camera shot &lt;br /&gt;
   // (1/8 of a rotation)&lt;br /&gt;
    pictureTaken2 = 512; // second motor&lt;br /&gt;
   // (1/4 of a rotation)&lt;br /&gt;
    stepper.step(pictureTaken);&lt;br /&gt;
    stepper2.step(pictureTaken2);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
  }&lt;br /&gt;
 &lt;br /&gt;
  else {&lt;br /&gt;
    Serial.println (&amp;quot;Motors Off!&amp;quot;);&lt;br /&gt;
  }&lt;br /&gt;
   &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2768</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2768"/>
		<updated>2018-12-12T20:38:25Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao.jpg]]&lt;br /&gt;
&lt;br /&gt;
The button representes the shot taken by the camera, this shot will activate the motor making it rotate a certain amount of degrees.&lt;br /&gt;
&lt;br /&gt;
The Code used (based on**):&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
  &lt;br /&gt;
  #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
  // change this to the number of steps on your motor&lt;br /&gt;
  #define STEPS 32&lt;br /&gt;
  &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
  Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
  const int camera = 2;&lt;br /&gt;
  int pictureTaken;&lt;br /&gt;
  int buttonState = 0;&lt;br /&gt;
  &lt;br /&gt;
  void setup() {&lt;br /&gt;
    Serial.begin(9600);&lt;br /&gt;
    pinMode(camera, INPUT);&lt;br /&gt;
    stepper.setSpeed(200);&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  void loop() {&lt;br /&gt;
  &lt;br /&gt;
   buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
   if (buttonState == HIGH) {&lt;br /&gt;
     Serial.println(&amp;quot;Motor On!&amp;quot;);&lt;br /&gt;
     pictureTaken = 250;&lt;br /&gt;
     stepper.step(pictureTaken);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
   else {&lt;br /&gt;
     Serial.println (&amp;quot;Motor Off!&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
3RD STEP Add a second motor to the circuit&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Some simple changes were made to the code:&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper2(STEPS, 4, 6, 5, 7);//second motor&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 const int camera = 2;&lt;br /&gt;
 int pictureTaken;&lt;br /&gt;
 int pictureTaken2; // second motor&lt;br /&gt;
 int buttonState = 0;&lt;br /&gt;
  &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   pinMode(camera, INPUT);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
   stepper2.setSpeed(200);//second motor&lt;br /&gt;
 }&lt;br /&gt;
  &lt;br /&gt;
 void loop() {&lt;br /&gt;
  &lt;br /&gt;
  buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
  if (buttonState == HIGH) {&lt;br /&gt;
    Serial.println(&amp;quot;Motors On!&amp;quot;);&lt;br /&gt;
    pictureTaken = 256;//number of steps the motor makes after camera shot &lt;br /&gt;
   // (1/8 of a rotation)&lt;br /&gt;
    pictureTaken2 = 512; // second motor&lt;br /&gt;
   // (1/4 of a rotation)&lt;br /&gt;
    stepper.step(pictureTaken);&lt;br /&gt;
    stepper2.step(pictureTaken2);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2767</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2767"/>
		<updated>2018-12-12T19:55:13Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao.jpg]]&lt;br /&gt;
&lt;br /&gt;
The button representes the shot taken by the camera, this shot will activate the motor making it rotate a certain amount of degrees.&lt;br /&gt;
&lt;br /&gt;
The Code used**:&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
  &lt;br /&gt;
  #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
  // change this to the number of steps on your motor&lt;br /&gt;
  #define STEPS 32&lt;br /&gt;
  &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
  Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
  const int camera = 2;&lt;br /&gt;
  int pictureTaken;&lt;br /&gt;
  int buttonState = 0;&lt;br /&gt;
  &lt;br /&gt;
  void setup() {&lt;br /&gt;
    Serial.begin(9600);&lt;br /&gt;
    pinMode(camera, INPUT);&lt;br /&gt;
    stepper.setSpeed(200);&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  void loop() {&lt;br /&gt;
  &lt;br /&gt;
   buttonState = digitalRead(camera);&lt;br /&gt;
 &lt;br /&gt;
   if (buttonState == HIGH) {&lt;br /&gt;
     Serial.println(&amp;quot;Motor On!&amp;quot;);&lt;br /&gt;
     pictureTaken = 250;&lt;br /&gt;
     stepper.step(pictureTaken);&lt;br /&gt;
 delay (5);&lt;br /&gt;
 &lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
   else {&lt;br /&gt;
     Serial.println (&amp;quot;Motor Off!&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2766</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2766"/>
		<updated>2018-12-12T19:30:57Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao.jpg]]&lt;br /&gt;
&lt;br /&gt;
The button representes the shot taken by the camera, this shot will activate the motor making it rotate a certain amount of degrees.&lt;br /&gt;
&lt;br /&gt;
The Code uses**:&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2765</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2765"/>
		<updated>2018-12-12T19:28:25Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Diagrama c butao.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2764</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2764"/>
		<updated>2018-12-12T19:27:29Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:diagrama_c_botao.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=Fichier:Diagrama_c_butao.jpg&amp;diff=2763</id>
		<title>Fichier:Diagrama c butao.jpg</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=Fichier:Diagrama_c_butao.jpg&amp;diff=2763"/>
		<updated>2018-12-12T19:24:56Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2762</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2762"/>
		<updated>2018-12-12T19:23:54Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2761</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2761"/>
		<updated>2018-12-11T17:21:40Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
2ND STEP, A button and an external sorce ofe energie was added to the circuit.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2729</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2729"/>
		<updated>2018-12-10T20:33:49Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1 &lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2728</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2728"/>
		<updated>2018-12-10T20:32:06Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
 // Arduino stepper motor control code&lt;br /&gt;
 &lt;br /&gt;
 #include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
 &lt;br /&gt;
 // change this to the number of steps on your motor&lt;br /&gt;
 #define STEPS 32&lt;br /&gt;
 &lt;br /&gt;
 // create an instance of the stepper class using the steps and pins&lt;br /&gt;
 Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
 &lt;br /&gt;
 int val = 0;&lt;br /&gt;
 &lt;br /&gt;
 void setup() {&lt;br /&gt;
   Serial.begin(9600);&lt;br /&gt;
   stepper.setSpeed(200);&lt;br /&gt;
 }&lt;br /&gt;
 &lt;br /&gt;
 void loop() {&lt;br /&gt;
 &lt;br /&gt;
   if (Serial.available()&amp;gt;0)&lt;br /&gt;
   {&lt;br /&gt;
     val = Serial.parseInt();&lt;br /&gt;
     stepper.step(val);&lt;br /&gt;
     Serial.println(val); //for debugging&lt;br /&gt;
   }&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2721</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2721"/>
		<updated>2018-12-09T18:14:32Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
// Arduino stepper motor control code&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
&lt;br /&gt;
// change this to the number of steps on your motor&lt;br /&gt;
#define STEPS 32&lt;br /&gt;
&lt;br /&gt;
// create an instance of the stepper class using the steps and pins&lt;br /&gt;
Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
&lt;br /&gt;
int val = 0;&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  stepper.setSpeed(200);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
&lt;br /&gt;
  if (Serial.available()&amp;gt;0)&lt;br /&gt;
  {&lt;br /&gt;
    val = Serial.parseInt();&lt;br /&gt;
    stepper.step(val);&lt;br /&gt;
    Serial.println(val); //for debugging&lt;br /&gt;
  }&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2720</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2720"/>
		<updated>2018-12-09T18:13:29Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
// Arduino stepper motor control code&lt;br /&gt;
#include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
// change this to the number of steps on your motor&lt;br /&gt;
#define STEPS 32&lt;br /&gt;
// create an instance of the stepper class using the steps and pins&lt;br /&gt;
Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
int val = 0;&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  stepper.setSpeed(200);&lt;br /&gt;
}&lt;br /&gt;
void loop() {&lt;br /&gt;
  if (Serial.available()&amp;gt;0)&lt;br /&gt;
  {&lt;br /&gt;
    val = Serial.parseInt();&lt;br /&gt;
    stepper.step(val);&lt;br /&gt;
    Serial.println(val); //for debugging&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
---------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2719</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2719"/>
		<updated>2018-12-09T18:11:23Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\ Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
\\The code used*:&lt;br /&gt;
&lt;br /&gt;
---------------------------------------------------------------------------------------------------&lt;br /&gt;
// Arduino stepper motor control code&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;Stepper.h&amp;gt; // Include the header file&lt;br /&gt;
&lt;br /&gt;
// change this to the number of steps on your motor&lt;br /&gt;
#define STEPS 32&lt;br /&gt;
&lt;br /&gt;
// create an instance of the stepper class using the steps and pins&lt;br /&gt;
Stepper stepper(STEPS, 8, 10, 9, 11);&lt;br /&gt;
&lt;br /&gt;
int val = 0;&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  stepper.setSpeed(200);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
&lt;br /&gt;
  if (Serial.available()&amp;gt;0)&lt;br /&gt;
  {&lt;br /&gt;
    val = Serial.parseInt();&lt;br /&gt;
    stepper.step(val);&lt;br /&gt;
    Serial.println(val); //for debugging&lt;br /&gt;
  }&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
---------------------------------------------------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2718</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2718"/>
		<updated>2018-12-09T16:39:39Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view in your pc (via USB cable) of the actions happening.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, making it, in my case, rotate the motor in a &amp;quot;negative&amp;quot; or &amp;quot;positive&amp;quot; direction with any given angle. by not typing (aka printing) anything the motor will stay in place.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//The code used*:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*(https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2717</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2717"/>
		<updated>2018-12-09T16:32:10Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//The circuit diagrame of an Arduino Uno, 28-BYJ48 steper motor and a ULN2003 stepper module (driver):&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// Using Serial Print: &lt;br /&gt;
&lt;br /&gt;
The serial monitor is a practical fiture of the arduino that alows a live view and possible interaction of the arduino board via USB cable.&lt;br /&gt;
&lt;br /&gt;
With serial print you can send information Live to the arduino Board, wich is related to the project because it is an external live element that will comand the motor to step in a sertain manner.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
//The code used (https://circuitdigest.com/microcontroller-projects/arduino-stepper-motor-control-tutorial)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 With the code bellow we can controle the motor by introducind in the serial motor the amount&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2716</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2716"/>
		<updated>2018-12-09T16:21:12Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
[[Fichier:Arduino_stepmotor_basic_circuit.png]]&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2715</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2715"/>
		<updated>2018-12-09T16:20:46Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
[[Arduino_stepmotor_basic_circuit.png]]&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=Fichier:Arduino_stepmotor_basic_circuit.png&amp;diff=2714</id>
		<title>Fichier:Arduino stepmotor basic circuit.png</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=Fichier:Arduino_stepmotor_basic_circuit.png&amp;diff=2714"/>
		<updated>2018-12-09T16:16:52Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : basic circuit diagram of arduino-ULN2003 driver and 28-BYJ48 steper motor&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;basic circuit diagram of arduino-ULN2003 driver and 28-BYJ48 steper motor&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2713</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2713"/>
		<updated>2018-12-09T16:14:17Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
[[Fichier:fichier.jpg]]&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2712</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2712"/>
		<updated>2018-12-09T16:13:34Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1st step, controle the stepmotor, back/ forward/ pause &lt;br /&gt;
&lt;br /&gt;
[[Fichier:fichier.png|200px|thumb|left|texte descriptif]]&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=Fichier:Circuit_diagram.png&amp;diff=2711</id>
		<title>Fichier:Circuit diagram.png</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=Fichier:Circuit_diagram.png&amp;diff=2711"/>
		<updated>2018-12-09T16:09:18Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : Basic conection of a 28-BYJ48 Stepper motor with a ULN2003 driver&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Basic conection of a 28-BYJ48 Stepper motor with a ULN2003 driver&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2710</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2710"/>
		<updated>2018-12-06T11:13:42Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:IMG 8000.JPG]]&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=Fichier:IMG_8000.JPG&amp;diff=2709</id>
		<title>Fichier:IMG 8000.JPG</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=Fichier:IMG_8000.JPG&amp;diff=2709"/>
		<updated>2018-12-06T11:12:56Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2516</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2516"/>
		<updated>2018-10-04T09:39:03Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
                      1&lt;br /&gt;
&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  2 step motors              8 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  3 Camera Capture            7 Camera capture&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +                                 +&lt;br /&gt;
  4 Step motors               6 Step motors&lt;br /&gt;
     +                                 +&lt;br /&gt;
     |                                 |&lt;br /&gt;
     +--------+ Camera Capture +-------+&lt;br /&gt;
&lt;br /&gt;
                      5&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2514</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2514"/>
		<updated>2018-10-04T09:32:50Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Scheme:&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=ERG::Code-2018-2&amp;diff=2513</id>
		<title>ERG::Code-2018-2</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=ERG::Code-2018-2&amp;diff=2513"/>
		<updated>2018-10-04T09:32:14Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : /* Projets */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Projets==&lt;br /&gt;
&lt;br /&gt;
[[Typoem - Quentin Lamouroux]]&lt;br /&gt;
&lt;br /&gt;
[[programme - Clara Sambot]]&lt;br /&gt;
&lt;br /&gt;
[[.IMG]]&lt;br /&gt;
&lt;br /&gt;
[[TYPO3000 - Nathan Laurent]]&lt;br /&gt;
&lt;br /&gt;
[[Destroy prog. zoeflts]]&lt;br /&gt;
&lt;br /&gt;
[[Campix_alice]]&lt;br /&gt;
&lt;br /&gt;
[[oram - Simon Bouvier]]&lt;br /&gt;
&lt;br /&gt;
[[Projet en cours de reflexion-AnthonyPauwels]]&lt;br /&gt;
&lt;br /&gt;
[[Trame92 - Hugo Delpluque]]&lt;br /&gt;
&lt;br /&gt;
[[Framing - Jean Cardin]]&lt;br /&gt;
&lt;br /&gt;
[[Máquina do tempo - Sofia Erzini]]&lt;br /&gt;
&lt;br /&gt;
[[test]]&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
	<entry>
		<id>https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2512</id>
		<title>Máquina do tempo - Sofia Erzini</title>
		<link rel="alternate" type="text/html" href="https://curlybraces.be/wiki/index.php?title=M%C3%A1quina_do_tempo_-_Sofia_Erzini&amp;diff=2512"/>
		<updated>2018-10-04T09:31:06Z</updated>

		<summary type="html">&lt;p&gt;Sofiaerzini : Page créée avec « A programme that can control a machine meant for stop motion animation.   The programme is responding to camera capture, therefor each time a picture is taken motors are a... »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A programme that can control a machine meant for stop motion animation. &lt;br /&gt;
&lt;br /&gt;
The programme is responding to camera capture, therefor each time a picture is taken motors are activated and take a step or more according to the preferences made by the programmer.&lt;br /&gt;
&lt;br /&gt;
These motors are integrated in the mechanical structure that will make all the elements of light and weather change frame-by-frame.&lt;br /&gt;
&lt;br /&gt;
Leaving the animator free to introduce any element according to this theme of cycle and repetition.&lt;/div&gt;</summary>
		<author><name>Sofiaerzini</name></author>
	</entry>
</feed>