Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
openatelier:projet:attiny-drum [2020/02/10 15:48]
mitoufflon
openatelier:projet:attiny-drum [2021/07/27 13:12] (Version actuelle)
gweltaz
Ligne 1: Ligne 1:
 +{{tag>​synth}} {{tag>​audio}} {{tag>​eurorack}} {{tag>​electronique}}
 +
 ======ATtiny85 drum module Eurorack ====== ======ATtiny85 drum module Eurorack ======
  
Ligne 34: Ligne 36:
 ===Test blink=== ===Test blink===
 Téléverser:​ Téléverser:​
 +<​code>​
  void setup() {  void setup() {
-  + 
-  pinMode(4, OUTPUT);+    pinMode(4, OUTPUT); 
 +    ​
  }  }
-  
  void loop() {  void loop() {
 +
    ​digitalWrite(4,​ HIGH); ​  // turn the LED on (HIGH is the voltage level)    ​digitalWrite(4,​ HIGH); ​  // turn the LED on (HIGH is the voltage level)
    ​delay(100); ​                      // wait for a second    ​delay(100); ​                      // wait for a second
Ligne 46: Ligne 49:
    ​delay(100); ​                      // wait for a second    ​delay(100); ​                      // wait for a second
  }  }
 +</​code>​
 ça clignote!! ça clignote!!
  
 +=====Faire du bruit=====
 + * Test drum8.ino
 +
 +
 +====Bootloader ====
 +Voir ici :​https://​ressources.labomedia.org/​lovetape#​programmation_de_l_attiny
  
-ATtiny85; Clock: Internal 16MHz 
  
  
Ligne 61: Ligne 69:
  
 http://​hex.ro/​wp/​blog/​attiny85-diy-programmer/​ http://​hex.ro/​wp/​blog/​attiny85-diy-programmer/​
 +
 +https://​www.youtube.com/​watch?​v=MK4ARnpljZg
 +
 + ​*bootloader
 +
 +https://​www.hackster.io/​porrey/​attiny-16mhz-610d41
 +
 +https://​github.com/​SpenceKonde/​ATTinyCore
 +
 +http://​sammy76.free.fr/​conseils/​electronique/​arduino/​asm/​asm_avr.php
  • openatelier/projet/attiny-drum.1581346103.txt.gz
  • Dernière modification: 2020/02/10 15:48
  • par mitoufflon