Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
fabricademy2017:students:julie.taris:class12-skin-electronics [2018/06/30 15:38]
julie_taris
fabricademy2017:students:julie.taris:class12-skin-electronics [2018/06/30 15:48]
julie_taris
Line 72: Line 72:
  
 {{:​fabricademy2017:​students:​julie.taris:​capture-ecran-biblio-led.jpg?​200|}} {{:​fabricademy2017:​students:​julie.taris:​capture-ecran-biblio-led.jpg?​200|}}
-{{:​fabricademy2017:​students:​julie.taris:​capture-ecran-deadheart.jpg?​200|}} 
  
 <​code>​ <​code>​
Line 97: Line 96:
 B00000000}; B00000000};
    
 +</​code>​
 +
 +big heart
 +<​code>​
 //big heart //big heart
 byte Heart2[] = { byte Heart2[] = {
Line 107: Line 110:
 B00111100, B00111100,
 B00011000}; B00011000};
-  +</code> 
-//Sub to transform array #1 into a pattern for the array+Sub to transform array #1 into a pattern for the array 
 +<​code>​
 void Heart1GO() void Heart1GO()
 { {
Line 117: Line 121:
   }   }
 } }
-  +</code> 
-//Sub to transform array #2 into a pattern for the array+Sub to transform array #2 into a pattern for the array 
 +<​code> ​
 void Heart2GO() void Heart2GO()
 { {
Line 127: Line 132:
   }   }
 } }
-  +</code> 
-//This sub will only be run once when the Arduino is started.+This sub will only be run once when the Arduino is started. 
 +<​code> ​
 void setup() { void setup() {
-lc.shutdown(0,​false); ​   //Iniciamos la matriz led #1 +lc.shutdown(0,​false); ​   //We started the LED matrix ​#1 
-lc.shutdown(1,​false); ​ //Iniciamos la matriz led #2 +lc.shutdown(1,​false); ​ //We started the LED matrix ​#2 
-lc.setIntensity(0,​5); ​   //Intensidad de los led en la matriz ​#1 +lc.setIntensity(0,​5); ​   //Intensity of the LEDs in the matrix ​#1 
-lc.setIntensity(1,​5); ​ //Intensidad de los led en la matriz ​#2 +lc.setIntensity(1,​5); ​ //Intensity of the leds in the matrix ​#2 
-lc.clearDisplay(0); ​     //Apagamos todos los led de la matriz ​#1 +lc.clearDisplay(0); ​     //We turn off all the LEDs in matrix ​#1 
-lc.clearDisplay(1); ​   //Apagamos todos los led de la matriz ​#2+lc.clearDisplay(1); ​   //We turn off all the LEDs in matrix ​#2
 } }
-  +</code> 
-//This sub will loop over and over again while the Arduino is powered.+This sub will loop over and over again while the Arduino is powered. 
 +<​code> ​
 void loop() { void loop() {
-Heart1GO(); ​        //Mostramos el patrón ​#1 +Heart1GO(); ​        //We show the pattern ​#1 
-delay(delayTime); ​  //Pequeña pausa +delay(delayTime); ​  //little pause 
-Heart2GO(); ​        //Mostramos el patrón ​#2 +Heart2GO(); ​        //We show the pattern ​#1 
-delay(delayTime); ​  //Pequeña pausa+delay(delayTime); ​  //little pause
 } }
  
Line 153: Line 160:
 https://​www.riyas.org/​2013/​12/​online-led-matrix-font-generator-with.html https://​www.riyas.org/​2013/​12/​online-led-matrix-font-generator-with.html
  
 +{{:​fabricademy2017:​students:​julie.taris:​capture-ecran-deadheart.jpg?​200|}}