Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
|
projets:totem:accueil [2021/12/20 12:55] resonance |
projets:totem:accueil [2022/03/30 16:33] (Version actuelle) resonance |
||
|---|---|---|---|
| Ligne 1: | Ligne 1: | ||
| - | ====== | + | ======Art' in Box totem ====== |
| * Porteur du projet : reso / La Nouvelle Vague Creative | * Porteur du projet : reso / La Nouvelle Vague Creative | ||
| - | * Date : 19/03/2021/ - ... | + | * Date : 19/03/2021/ - en cours |
| * Description : Totem multimédia pour les bébés | * Description : Totem multimédia pour les bébés | ||
| * Lien : [[http:// | * Lien : [[http:// | ||
| - | * [[projets: | ||
| * {{ : | * {{ : | ||
| + | * {{ : | ||
| {{tag> | {{tag> | ||
| - | {{: | + | {{: |
| ===== EXPRESSION COLLECTIVE ===== | ===== EXPRESSION COLLECTIVE ===== | ||
| Tour de table des imaginaires avec Pascal Bely et les équipes d' | Tour de table des imaginaires avec Pascal Bely et les équipes d' | ||
| Ligne 33: | Ligne 33: | ||
| </ | </ | ||
| - | ==== LOGICIELS ==== | ||
| - | === Arduino Nano Leds === | ||
| - | Seulement 2 strips employées sur les 3. les leds du menu sont sur la strip du haut | ||
| - | ++++ Attribution des id Leds| | ||
| - | // distribution par panneaux | + | ====Recherches==== |
| - | int NB_LEDS_per_P | + | [[projets: |
| + | ====Technique==== | ||
| + | [[projets: | ||
| + | ====Contenus==== | ||
| + | | ||
| - | int P1b[] = { 0, | ||
| - | int P1h[] = { 51, | ||
| - | |||
| - | // | ||
| - | int P2b[] = { 13, | ||
| - | int P2h[] = { 38, | ||
| - | |||
| - | // | ||
| - | int P3b[] = { 26, | ||
| - | int P3h[] = { 25, | ||
| - | |||
| - | // | ||
| - | int P4b[] = { 39, | ||
| - | int P4h[] = { 12, | ||
| - | |||
| - | // | ||
| - | int Menu[] = { 60, | ||
| - | |||
| - | |||
| - | int *curr_Pxb; | ||
| - | int *curr_Pxh; | ||
| - | |||
| - | |||
| - | // | ||
| - | int currentZenHue; | ||
| - | // | ||
| - | int hues[] = { 50, 100, 200 }; // default hue values | ||
| - | |||
| - | int currentFPS = 80; | ||
| - | |||
| - | void setup() { | ||
| - | delay(2000); | ||
| - | |||
| - | // Setup leds array | ||
| - | FastLED.addLeds< | ||
| - | FastLED.addLeds< | ||
| - | FastLED.addLeds< | ||
| - | |||
| - | // Setup color par panneaux | ||
| - | for (int i = 0; i < NB_LEDS_per_P; | ||
| - | { | ||
| - | // P1 Flore | ||
| - | leds[0][P1b[i]] = CRGB:: | ||
| - | leds[1][P1h[i]] = CRGB:: | ||
| - | // P2 Cosmos | ||
| - | leds[0][P2b[i]] = CRGB:: | ||
| - | leds[1][P2h[i]] = CRGB:: | ||
| - | // P3 Faune | ||
| - | leds[0][P3b[i]] = CRGB:: | ||
| - | leds[1][P3h[i]] = CRGB:: | ||
| - | // P4 Sapiens | ||
| - | leds[0][P4b[i]] = CRGB::Blue; | ||
| - | leds[1][P4h[i]] = CRGB::Blue; | ||
| - | // | ||
| - | FastLED.setBrightness(10); | ||
| - | } | ||
| - | // MENU ZEN | ||
| - | leds[1][60] = CRGB::Blue; | ||
| - | leds[1][61] = CRGB::Blue; | ||
| - | // MENU MED | ||
| - | leds[1][62] = CRGB:: | ||
| - | leds[1][63] = CRGB:: | ||
| - | // MENU JEU | ||
| - | leds[1][65] = CRGB::Red; | ||
| - | leds[1][66] = CRGB::Red; | ||
| - | // | ||
| - | FastLED.setBrightness(10); | ||
| - | FastLED.show(); | ||
| - | |||
| - | // Serial communication | ||
| - | Serial.begin(BAUD_RATE); | ||
| - | } | ||
| - | |||
| - | </code > | ||
| - | ++++ | ||