Table faites de LEDs

a marqué ce sujet comme résolu.

Depuis quelque temps je cherche un projet à faire avec des LEDs et j'ai finalement trouvé. Le problèmec'est que je ne trouve rien pour m'aider à programmer le tout. Je voudrais contrôler une matrice de LEDs de 16x32 à l'aide de deux HT1632. je n'arrive tout simplement pas à trouver un programme qui fonctionne sur le net, je ne peux donc pas tester mon branchement. Si quelqu'un avait un lien ou quelque chose qui pourrait m'aider dans mon projet. Merci d'avance

+0 -0

Moi cet été, je vais essayé un cube de led. C'est une idée si tu veux jouer avec des leds.

+0 -0

On est deux sur le projet. On a déjà eu à manipuler un cube de led.

Oui, mais on va reprendre les schémas du cube qu'on nous avait prêté. Il utilisait des drivers qui se souvenait des bits qu'ils pouvaient recevoir et qui pouvait être chaîné (on a besoin de 5 drivers de ce type, 4 pour les colonnes, 1 pour les étages) .

Le driver qu'on utilisera : STP16CP05

PS: Le projet n'est pas simple, on compte faire un cube 3x3x3 avant de faire un 8x8x8 et de suivre bien toutes les étapes et les conseils qu'on peut nous fournir sur internet. Si tu te lances toi aussi dans un projet similaire, je te conseil de faire pareil.

+0 -0

Je ne comprend pas pourquoi les exemple que je trouve sur internet ne fonctionne pas. Il y a toujours un problème de compilation. J'ai ce code:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <ht1632c.h>

ht1632c ledMatrix = ht1632c(&PORTD, 7, 6, 4, 5, GEOM_32x16, 2);

void setup() {
  ledMatrix.clear();
}

void loop() {
  char x1,y1, x2,y2, dx1, dy1, dx2, dy2;

  x1 = random(0,ledMatrix.x_max);
  x2 = random(0,ledMatrix.x_max);
  y1 = random(0,ledMatrix.y_max);
  y2 = random(0,ledMatrix.y_max);
  dx1 = random(1,4);
  dx2 = random(1,4);
  dy1 = random(1,4);
  dy2 = random(1,4);
  while (1) {
    ledMatrix.line(x1,y1, x2,y2, random(1,4));
    ledMatrix.sendframe();
    delay(100);
    ledMatrix.line(x1,y1, x2,y2, 0);
    ledMatrix.sendframe();

    x1 += dx1;
    if (x1 > ledMatrix.x_max) {
      x1 = ledMatrix.x_max;
      dx1 = -random(1,4);
    } 
    else if (x1 < 0) {
      x1 = 0;
      dx1 = random(1,4);
    }

    x2 += dx2;
    if (x2 > ledMatrix.x_max) {
      x2 = ledMatrix.x_max;
      dx2 = -random(1,4);
    } 
    else if (x2 < 0) {
      x2 = 0;
      dx2 = random(1,4);
    }

    y1 += dy1;
    if (y1 > ledMatrix.y_max) {
      y1 = ledMatrix.y_max;
      dy1 = -random(1,3);
    } 
    else if (y1 < 0) {
      y1 = 0;
      dy1 = random(1,3);
    }

    y2 += dy2;
    if (y2 > ledMatrix.y_max) {
      y2 = ledMatrix.y_max;
      dy2 = -random(1,3);
    } 
    else if (y2 < 0) {
      y2 = 0;
      dy2 = random(1,3);
    }
  }
}

Et j'obtiens ces erreurs: < In file included from line.pde:1:0: C:\Users\samuelB\Documents\Arduino\libraries\ht1632c/ht1632c.h:212:5: error: 'prog_uint8_t' does not name a type prog_uint8_t font; ^ C:\Users\samuelB\Documents\Arduino\libraries\ht1632c/ht1632c.h:213:5: error: 'prog_uint16_t' does not name a type prog_uint16_t wfont; ^ Erreur de compilation.> S'il-vous plait je n'arrive a rien:(:(

Hummm … Je ne connais pas le type prog_uint16_t. Mais je suppose que c'est un typedef du type uint16_t définie dans stdint.h.

idem pour prog_uint8_t

+0 -0

2 choix, soit tu remplaces les prog_uint16_t par des uint16_t (dans le fichier que tu inclues) sans oublié d'inclure stdint.h

Soit tu les définies. Dans ce cas là, tu dois certainement rajouter un truc du style :

1
2
3
4
    typedef uint8_t  prog_uint16_t; 
    typedef uint16_t prog_uint16_t; 
    typedef uint32_t  prog_uint32_t; 
    typedef uint64_t  prog_uint64_t;

Si tu tapes prog_uint8t sur ddg tu tombes sur des liens qui disent que prog_uint8_t est déprécié. Donc à ta place, je choisirais la première méthode. C'est à dire, modifié directement le header.

+0 -0

Voici la bibliothèque que j'ajoute à mon programme. J'y ai ajouté

include stdint.h et j'ai enlever:

//typedef unsigned char prog_uint8_t;
//typedef unsigned int prog_uint16_t;

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/*
 * ht1632c.h
 * defintions for Holtek ht1632c LED driver.
 */

#ifndef ht1632c_h
#define ht1632c_h
#include stdint.h

#if defined(ARDUINO) && ARDUINO >= 100
#include <Arduino.h>
#else
#include <WProgram.h>
#endif

#include <avr/wdt.h>

/* Arduino specific definitions */

#if defined(__AVR__)
#endif

/* Chipkit specific definitions */

#if defined(__PIC32MX__)
#endif

/* Leaflab Maple specific definitions */

#if defined (__ARMEL__)
typedef unsigned char uint8_t;
typedef unsigned int uint16_t;
//typedef unsigned char prog_uint8_t;
//typedef unsigned int prog_uint16_t;
uint8_t inline pgm_read_byte_near(uint8_t *ptr) { return (uint8_t)*ptr; }
uint16_t inline pgm_read_word_near(uint16_t *ptr) { return (uint16_t)*ptr; }
#define PROGMEM __FLASH__
#define inline inline __attribute__((always_inline))
#endif

/*
 * commands written to the chip consist of a 3 bit "ID", followed by
 * either 9 bits of "Command code" or 7 bits of address + 4 bits of data.
 */
#define HT1632_ID_CMD        4  /* ID = 100 - Commands */
#define HT1632_ID_RD         6  /* ID = 110 - Read RAM */
#define HT1632_ID_WR         5  /* ID = 101 - Write RAM */

#define HT1632_CMD_SYSDIS 0x00  /* CMD= 0000-0000-x Turn off oscil */
#define HT1632_CMD_SYSON  0x01  /* CMD= 0000-0001-x Enable system oscil */
#define HT1632_CMD_LEDOFF 0x02  /* CMD= 0000-0010-x LED duty cycle gen off */
#define HT1632_CMD_LEDON  0x03  /* CMD= 0000-0011-x LEDs ON */
#define HT1632_CMD_BLOFF  0x08  /* CMD= 0000-1000-x Blink ON */
#define HT1632_CMD_BLON   0x09  /* CMD= 0000-1001-x Blink Off */
#define HT1632_CMD_SLVMD  0x10  /* CMD= 0001-00xx-x Slave Mode */
#define HT1632_CMD_MSTMD  0x14  /* CMD= 0001-01xx-x Master Mode */
#define HT1632_CMD_RCCLK  0x18  /* CMD= 0001-10xx-x Use on-chip clock */
#define HT1632_CMD_EXTCLK 0x1C  /* CMD= 0001-11xx-x Use external clock */
#define HT1632_CMD_COMS00 0x20  /* CMD= 0010-ABxx-x commons options */
#define HT1632_CMD_COMS01 0x24  /* CMD= 0010-ABxx-x commons options */
#define HT1632_CMD_COMS10 0x28  /* CMD= 0010-ABxx-x commons options */
#define HT1632_CMD_COMS11 0x2C  /* CMD= 0010-ABxx-x commons options */
#define HT1632_CMD_PWM    0xA0  /* CMD= 101x-PPPP-x PWM duty cycle */

#define HT1632_ID_LEN     (1 << 2)  /* IDs are 3 bits */
#define HT1632_CMD_LEN    (1 << 7)  /* CMDs are 8 bits */
#define HT1632_DATA_LEN   (1 << 7)  /* Data are 4*2 bits */
#define HT1632_ADDR_LEN   (1 << 6)  /* Address are 7 bits */

#define HT1632_CS_NONE       0  /* None of ht1632c selected */
#define HT1632_CS_ALL       32 /* All of ht1632c selected */

#define GEOM_32x16      32  /* 32x16 */
#define GEOM_24x16      24  /* 24x16 */
#define GEOM_32x8        8  /* 32x8 */

#define BLACK        0
#define GREEN        1
#define RED          2
#define ORANGE       3
#define RANDOMCOLOR  4
#define MULTICOLOR   8
#define BLINK       16

#define BOLD         1
#define UNDERLINE    2
#define ITALIC       4
#define PROPORTIONAL 8

#define LEFT         0
#define RIGHT        1
#define UP           0
#define DOWN         1

#define FONT_4x6     1
#define FONT_5x7     2
#define FONT_5x8     3
#define FONT_5x7W    4
//#define FONT_6x10    5
//#define FONT_6x12    6
//#define FONT_6x13    7
//#define FONT_6x13B   8
//#define FONT_6x13O   9
//#define FONT_6x9    10
//#define FONT_7x13   11
//#define FONT_7x13B  12
//#define FONT_7x13O  13
//#define FONT_7x14   14
//#define FONT_7x14B  15
#define FONT_8x8    16
#define FONT_8x13   17
#define FONT_8x13B  18
//#define FONT_8x13O  19
//#define FONT_9x15   20
//#define FONT_9x15B  21
#define FONT_8x16   22
#define FONT_8x16B  23

//#define FONT_8x13BK 118

/* USE_NLFB experimental feature: use nonlinear framebuffer addressing, faster then linear addressing */
#define USE_NLFB 

/* USE_ASM experimental feature: use assembler for low level function, faster then C for bitbanging */
#define USE_ASM

/* assembler low level functions only for AVR */
#if defined (__ARMEL__) || defined (__PIC32MX__)
#undef USE_ASM
#endif

/* from Arduino >= 1.0 Print functions returns size_t instead of void */
#if defined(ARDUINO) && ARDUINO >= 100
#define PRINT_NEW
#endif

/* Chipkit and Leaflab Maple structure for defining a port (port register address and bit mask for pin) */
struct _port_t {
#if defined (__ARMEL__)
  gpio_dev *dev;
  uint8_t mask;
#elif defined (__PIC32MX__)
  volatile p32_ioport *regs;
  uint16_t mask;
#endif
};

class ht1632c : public Print {

#ifdef putchar
#undef putchar
#endif

public:
    ht1632c(const uint8_t data, const uint8_t wr, const uint8_t clk, const uint8_t cs, const uint8_t geometry, const uint8_t number);
    ht1632c(volatile uint8_t *port, const uint8_t data, const uint8_t wr, const uint8_t clk, const uint8_t cs, const uint8_t geometry, const uint8_t number);

    void pwm(uint8_t value);
    void sendframe();
    void clear();
    void plot(uint8_t x, uint8_t y, uint8_t color);
    uint8_t getpixel(uint8_t x, uint8_t y);
    uint8_t putchar(int x, int y, char c, uint8_t color = GREEN, uint8_t attr = 0, uint8_t bgcolor = BLACK);
    void putbitmap(int x, int y, uint16_t *bitmap, uint8_t w, uint8_t h, uint8_t color);
    void hscrolltext(int y, char *text, uint8_t color, int delaytime, int times = 1, uint8_t dir = LEFT, uint8_t attr = 0, uint8_t bgcolor = BLACK);
    void vscrolltext(int x, char *text, uint8_t color, int delaytime, int times = 1, uint8_t dir = UP, uint8_t attr = 0, uint8_t bgcolor = BLACK);
    void setfont(uint8_t userfont);
    void line(int x0, int y0, int x1, int y1, uint8_t color);
    void rect(int x0, int y0, int x1, int y1, uint8_t color);
    void circle(int xm, int ym, int r, uint8_t color);
    void ellipse(int x0, int y0, int x1, int y1, uint8_t color);
    void fill(uint8_t x, uint8_t y, uint8_t color);
    void bezier(int x0, int y0, int x1, int y1, int x2, int y2, uint8_t color);
    void profile();
#ifdef PRINT_NEW
    virtual size_t write(uint8_t chr);
    virtual size_t write(const char *str);
#else
    virtual void write(uint8_t chr);
    virtual void write(const char *str);
#endif

    uint8_t x_max;
    uint8_t y_max;
    int fps;

private:
    void _sendcmd(uint8_t cs, uint8_t command);
    void _setup(uint8_t number);
    void _update_fb(uint8_t *ptr, uint8_t target, uint8_t pixel);

    void _set(uint8_t val);
    void _toggle(uint8_t val);
    void _reset(uint8_t val);
    void _pulse(uint8_t num, uint8_t val);

    void _set(_port_t port);
    void _toggle(_port_t port);
    void _reset(_port_t port);
    void _pulse(uint8_t num, _port_t port);

    void _writebits (uint8_t bits, uint8_t msb);
    void _chipselect(uint8_t cs);

    void _fill_r(uint8_t x, uint8_t y, uint8_t color);
    void _fill_l(uint8_t x, uint8_t y, uint8_t color);

    static uint8_t *g_fb;
    static uint8_t *r_fb;
    uint16_t fb_size;
    uint8_t cs_max;
    boolean bicolor;
    prog_uint8_t *font;
    prog_uint16_t *wfont;
    uint8_t font_width;
    uint8_t font_height;
    uint8_t x_cur;
    uint8_t y_cur;

    static volatile uint8_t *_port;
#if defined (__AVR__)
    static uint8_t _data;
    static uint8_t _wr;
    static uint8_t _clk;
    static uint8_t _cs;
#elif defined (__ARMEL__) || defined (__PIC32MX__)
    static _port_t _data;
    static _port_t _wr;
    static _port_t _clk;
    static _port_t _cs;
#endif
};

#endif
1
#include<stdint.h>

Avec les chevrons.

Apparemment, seules les lignes 213 et 214 utilisent des prog_uint, et ils n'ont pas l'air d'être défini. Soit tu les remplaces à la main. Soit tu définies le typedef.

+0 -0

j'obtiens maintenant ce message d'erreur…

C:\Users\samuelB\AppData\Local\Temp\build322984244383207697.tmp\line.cpp.o: In function `setup':

C:\Program Files (x86)\Arduino/line.pde:6: undefined reference to `ht1632c::clear()'

C:\Users\samuelB\AppData\Local\Temp\build322984244383207697.tmp\line.cpp.o: In function `loop':

C:\Program Files (x86)\Arduino/line.pde:21: undefined reference to `ht1632c::line(int, int, int, int, unsigned char)'

C:\Program Files (x86)\Arduino/line.pde:22: undefined reference to `ht1632c::sendframe()'

C:\Program Files (x86)\Arduino/line.pde:24: undefined reference to `ht1632c::line(int, int, int, int, unsigned char)'

C:\Program Files (x86)\Arduino/line.pde:25: undefined reference to `ht1632c::sendframe()'

C:\Users\samuelB\AppData\Local\Temp\build322984244383207697.tmp\line.cpp.o: In function `__static_initialization_and_destruction_0':

C:\Program Files (x86)\Arduino/line.pde:3: undefined reference to `ht1632c::ht1632c(unsigned char volatile*, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char, unsigned char)'

à chaque fois que je répare une erreur, une autre apparait…

Connectez-vous pour pouvoir poster un message.
Connexion

Pas encore membre ?

Créez un compte en une minute pour profiter pleinement de toutes les fonctionnalités de Zeste de Savoir. Ici, tout est gratuit et sans publicité.
Créer un compte