Différences
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:matrice_led_24x24 [25/10/2018 18:03] Vincent Roudaut | projets:matrice_led_24x24 [05/12/2018 00:23] (Version actuelle) Mathieu Hery | ||
|---|---|---|---|
| Ligne 17: | Ligne 17: | ||
| ---- | ---- | ||
| + | |||
| + | ==== Code Arduino ==== | ||
| + | |||
| + | ++++ Déclaration de la matrice | | ||
| + | <code c> | ||
| + | #include <Adafruit_GFX.h> | ||
| + | #include <Adafruit_NeoMatrix.h> | ||
| + | #include <Adafruit_NeoPixel.h> | ||
| + | |||
| + | #define PIN 9 | ||
| + | |||
| + | // MATRIX DECLARATION: | ||
| + | // See Adafruit NeoMatrix example > tiletest for more info | ||
| + | Adafruit_NeoMatrix matrix = Adafruit_NeoMatrix(8, 8, 3, 3, PIN, | ||
| + | NEO_TILE_BOTTOM  + NEO_TILE_RIGHT  + NEO_TILE_ROWS  + NEO_TILE_PROGRESSIVE + | ||
| + | NEO_MATRIX_BOTTOM + NEO_MATRIX_RIGHT + NEO_MATRIX_ROWS + NEO_MATRIX_PROGRESSIVE, | ||
| + | NEO_GRB + NEO_KHZ800); | ||
| + |  | ||
| + | void setup() { | ||
| + | matrix.setBrightness(15); | ||
| + | matrix.begin(); | ||
| + | } | ||
| + | </code> | ||
| + | ++++ | ||
| + | |||
| + | |||
| + | ++++ Gamma Correction (pour des couleurs plus réalistes !)| | ||
| + | <code c> | ||
| + | // Gamma correction | ||
| + | const uint8_t PROGMEM gamma8[] = { | ||
| + | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, | ||
| + | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, | ||
| + | 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, | ||
| + | 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, | ||
| + | 5, 6, 6, 6, 6, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 10, | ||
| + | 10, 10, 11, 11, 11, 12, 12, 13, 13, 13, 14, 14, 15, 15, 16, 16, | ||
| + | 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 24, 24, 25, | ||
| + | 25, 26, 27, 27, 28, 29, 29, 30, 31, 32, 32, 33, 34, 35, 35, 36, | ||
| + | 37, 38, 39, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 50, | ||
| + | 51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, | ||
| + | 69, 70, 72, 73, 74, 75, 77, 78, 79, 81, 82, 83, 85, 86, 87, 89, | ||
| + | 90, 92, 93, 95, 96, 98, 99, 101, 102, 104, 105, 107, 109, 110, 112, 114, | ||
| + | 115, 117, 119, 120, 122, 124, 126, 127, 129, 131, 133, 135, 137, 138, 140, 142, | ||
| + | 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 167, 169, 171, 173, 175, | ||
| + | 177, 180, 182, 184, 186, 189, 191, 193, 196, 198, 200, 203, 205, 208, 210, 213, | ||
| + | 215, 218, 220, 223, 225, 228, 231, 233, 236, 239, 241, 244, 247, 249, 252, 255 | ||
| + | }; | ||
| + | </code> | ||
| + | ++++ | ||
| ==== Créer et afficher des bitmaps multi-couleurs ==== | ==== Créer et afficher des bitmaps multi-couleurs ==== | ||
| Ligne 24: | Ligne 73: | ||
| *Dans gimp exporter le bitmap 24x24 en image ppm et choisir ASCII. | *Dans gimp exporter le bitmap 24x24 en image ppm et choisir ASCII. | ||
| *Utiliser ce [[https://github.com/8mh8/ppmconverter|programme python]] pour convertir le fichier ppm en deux pavés à copier/coller dans arduino | *Utiliser ce [[https://github.com/8mh8/ppmconverter|programme python]] pour convertir le fichier ppm en deux pavés à copier/coller dans arduino | ||
| - | |||
| - | |||
| ==== Bitmaps & Code Arduino ==== | ==== Bitmaps & Code Arduino ==== | ||
| Ligne 854: | Ligne 901: | ||
| - | ==== Code Arduino ==== | ||
| - | |||
| - | ++++ Déclaration de la matrice | | ||
| - | <code c> | ||
| - | Adafruit_NeoMatrix matrix = Adafruit_NeoMatrix(8, 8, 3, 3, PIN, | ||
| - | NEO_TILE_BOTTOM  + NEO_TILE_RIGHT  + NEO_TILE_ROWS  + NEO_TILE_PROGRESSIVE + | ||
| - | NEO_MATRIX_BOTTOM + NEO_MATRIX_RIGHT + NEO_MATRIX_ROWS + NEO_MATRIX_PROGRESSIVE, | ||
| - | NEO_GRB + NEO_KHZ800); | ||
| - | </code> | ||
| - | ++++ | ||

 
   
   
   
  