Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Arduino: 1.6.12 (Windows 10), Board: "Arduino/Genuino Uno"
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:25:1: warning: "/*" within comment [-Wcomment]
- /********************************************************************************/
- ^
- In file included from C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:43:0:
- fonts.h:1: error: variable 'font_3x5' must be const in order to be put into read-only section by means of '__attribute__((progmem))'
- unsigned char PROGMEM font_3x5[11][3] = {
- ^
- fonts.h:15: error: variable 'font_4x7' must be const in order to be put into read-only section by means of '__attribute__((progmem))'
- unsigned char PROGMEM font_4x7[11][4] = {
- ^
- fonts.h:46: error: 'prog_uint16_t' does not name a type
- const prog_uint16_t PROGMEM font_5x12[11][5] = {
- ^
- fonts.h:61: error: 'prog_uint8_t' does not name a type
- const prog_uint8_t PROGMEM sprite_00[8] =
- ^
- fonts.h:73: error: 'prog_uint8_t' does not name a type
- const prog_uint8_t PROGMEM sprite_01[8] =
- ^
- fonts.h:85: error: 'prog_uint8_t' does not name a type
- const prog_uint8_t PROGMEM sprite_02[8] =
- ^
- fonts.h:97: error: 'prog_uint8_t' does not name a type
- const prog_uint8_t PROGMEM sprite_03[8] =
- ^
- fonts.h:110: error: variable 'tetris_8x8' must be const in order to be put into read-only section by means of '__attribute__((progmem))'
- unsigned char PROGMEM tetris_8x8[8][8] = {
- ^
- fonts.h:122: error: 'prog_uint16_t' does not name a type
- const prog_uint16_t PROGMEM pacman_12x12[3][12] = {
- ^
- dotklok_rev_1_3:66: error: 'PULLUP' was not declared in this scope
- Button b1 = Button(6,PULLUP);
- ^
- dotklok_rev_1_3:67: error: 'PULLUP' was not declared in this scope
- Button b2 = Button(5,PULLUP);
- ^
- dotklok_rev_1_3:68: error: 'PULLUP' was not declared in this scope
- Button b3 = Button(8,PULLUP);
- ^
- dotklok_rev_1_3:69: error: 'PULLUP' was not declared in this scope
- Button b4 = Button(7,PULLUP);
- ^
- dotklok_rev_1_3:70: error: 'PULLUP' was not declared in this scope
- Button b5 = Button(4,PULLUP);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void clear_column(byte)':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:168:9: warning: comparison is always false due to limited range of data type [-Wtype-limits]
- if(col<0 || col>X_MAX) return;
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void clear_row(byte)':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:179:9: warning: comparison is always false due to limited range of data type [-Wtype-limits]
- if(row<0 || row>Y_MAX) return;
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'boolean change_animation()':
- dotklok_rev_1_3:254: error: 'class Button' has no member named 'isPressed'
- if(!b1.isPressed() && !b2.isPressed() && b3.uniquePress() && animation>1){
- ^
- dotklok_rev_1_3:254: error: 'class Button' has no member named 'isPressed'
- if(!b1.isPressed() && !b2.isPressed() && b3.uniquePress() && animation>1){
- ^
- dotklok_rev_1_3:254: error: 'class Button' has no member named 'uniquePress'
- if(!b1.isPressed() && !b2.isPressed() && b3.uniquePress() && animation>1){
- ^
- dotklok_rev_1_3:260: error: 'class Button' has no member named 'isPressed'
- if(!b1.isPressed() && !b2.isPressed() && b4.uniquePress() && animation<ani_max){
- ^
- dotklok_rev_1_3:260: error: 'class Button' has no member named 'isPressed'
- if(!b1.isPressed() && !b2.isPressed() && b4.uniquePress() && animation<ani_max){
- ^
- dotklok_rev_1_3:260: error: 'class Button' has no member named 'uniquePress'
- if(!b1.isPressed() && !b2.isPressed() && b4.uniquePress() && animation<ani_max){
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'boolean midnight_random()':
- dotklok_rev_1_3:277: error: 'class Button' has no member named 'isPressed'
- if( b5.isPressed() ){
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void bufchar_4x7(byte, byte, char)':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:364:16: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
- if (c >= 'A' && c <= 'Z' ||
- ^
- In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
- from sketch\dotklok_rev_1_3.pde.cpp:1:
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:376:42: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&font_4x7[c][col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:376:47: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&font_4x7[c][col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void put_sprite(int, int, const uint8_t*)':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:451:42: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&sprite[col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void del_sprite(int, int, const uint8_t*)':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:469:42: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&sprite[col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void invader()':
- dotklok_rev_1_3:524: error: 'sprite_00' was not declared in this scope
- put_sprite(x,y, sprite_00);
- ^
- dotklok_rev_1_3:525: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- dotklok_rev_1_3:528: error: 'sprite_01' was not declared in this scope
- put_sprite(x,y, sprite_01);
- ^
- dotklok_rev_1_3:529: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- dotklok_rev_1_3:534: error: 'sprite_02' was not declared in this scope
- put_sprite(x,y, sprite_02);
- ^
- dotklok_rev_1_3:535: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- dotklok_rev_1_3:538: error: 'sprite_03' was not declared in this scope
- put_sprite(x,y, sprite_03);
- ^
- dotklok_rev_1_3:539: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
- from sketch\dotklok_rev_1_3.pde.cpp:1:
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void put_tetris(byte, byte, char)':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:572:44: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&tetris_8x8[c][col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:572:49: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&tetris_8x8[c][col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void del_tetris(byte, byte, char)':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:585:44: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&tetris_8x8[c][col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde:585:49: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&tetris_8x8[c][col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void tetris_fall(int)':
- dotklok_rev_1_3:602: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void put_pacman(byte, byte, char)':
- dotklok_rev_1_3:616: error: 'prog_uint16_t' was not declared in this scope
- prog_uint16_t dots;
- ^
- dotklok_rev_1_3:619: error: 'dots' was not declared in this scope
- dots = pgm_read_word_near(&pacman_12x12[c][col]);
- ^
- In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
- from sketch\dotklok_rev_1_3.pde.cpp:1:
- dotklok_rev_1_3:619: error: 'pacman_12x12' was not declared in this scope
- dots = pgm_read_word_near(&pacman_12x12[c][col]);
- ^
- dotklok_rev_1_3:620: error: expected ';' before 'row'
- for (prog_uint16_t row=0; row < 11; row++) {
- ^
- dotklok_rev_1_3:620: error: 'row' was not declared in this scope
- for (prog_uint16_t row=0; row < 11; row++) {
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void del_pacman(byte, byte, char)':
- dotklok_rev_1_3:631: error: 'prog_uint16_t' was not declared in this scope
- prog_uint16_t dots;
- ^
- dotklok_rev_1_3:634: error: 'dots' was not declared in this scope
- dots = pgm_read_word_near(&pacman_12x12[c][col]);
- ^
- In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
- from sketch\dotklok_rev_1_3.pde.cpp:1:
- dotklok_rev_1_3:634: error: 'pacman_12x12' was not declared in this scope
- dots = pgm_read_word_near(&pacman_12x12[c][col]);
- ^
- dotklok_rev_1_3:635: error: expected ';' before 'row'
- for (prog_uint16_t row=0; row < 11; row++) {
- ^
- dotklok_rev_1_3:635: error: 'row' was not declared in this scope
- for (prog_uint16_t row=0; row < 11; row++) {
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\dotklok_rev_1_3.pde: In function 'void pacman(int)':
- dotklok_rev_1_3:654: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- dotklok_rev_1_3:658: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- dotklok_rev_1_3:663: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- dotklok_rev_1_3:667: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde: In function 'void plot(char, char, char)':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:327:49: warning: suggest parentheses around arithmetic in operand of '^' [-Wparentheses]
- else { addr = ((x%24)<<2) + (y>>2)^ 28; }
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:331:29: warning: array subscript has type 'char' [-Wchar-subscripts]
- ht1632_shadowram[c][addr] |= bitval;
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:334:29: warning: array subscript has type 'char' [-Wchar-subscripts]
- ht1632_shadowram[c][addr] &= ~bitval;
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:339:58: warning: array subscript has type 'char' [-Wchar-subscripts]
- ht1632_senddata(chip[c], addr, ht1632_shadowram[c][addr]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:276:8: warning: unused variable 'chip_this' [-Wunused-variable]
- byte chip_this;
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde: In function 'void ht1632_clear()':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:361:28: warning: array subscript has type 'char' [-Wchar-subscripts]
- ht1632_shadowram[c][i] = 0;
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde: In function 'void putchar_3x5(byte, byte, char)':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:373:16: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
- if (c >= 'A' && c <= 'Z' ||
- ^
- In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
- from sketch\dotklok_rev_1_3.pde.cpp:1:
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:385:42: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&font_3x5[c][col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:385:47: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&font_3x5[c][col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde: In function 'void putchar_4x7(byte, byte, char)':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:403:16: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
- if (c >= 'A' && c <= 'Z' ||
- ^
- In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
- from sketch\dotklok_rev_1_3.pde.cpp:1:
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:415:42: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&font_4x7[c][col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:415:47: warning: array subscript has type 'char' [-Wchar-subscripts]
- dots = pgm_read_byte_near(&font_4x7[c][col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde: In function 'void putchar_5x12(byte, byte, char)':
- ht1632:432: error: 'prog_uint16_t' was not declared in this scope
- prog_uint16_t dots;
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\ht1632.pde:434:16: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
- if (c >= 'A' && c <= 'Z' ||
- ^
- ht1632:446: error: 'dots' was not declared in this scope
- dots = pgm_read_word_near(&font_5x12[c][col]);
- ^
- In file included from C:\Program Files\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,
- from sketch\dotklok_rev_1_3.pde.cpp:1:
- ht1632:446: error: 'font_5x12' was not declared in this scope
- dots = pgm_read_word_near(&font_5x12[c][col]);
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void basic_time()':
- time_animations:90: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- time_animations:93: error: 'class Button' has no member named 'isPressed'
- if(b1.isPressed()){
- ^
- time_animations:94: error: 'class Button' has no member named 'uniquePress'
- if(b3.uniquePress()){
- ^
- time_animations:101: error: 'class Button' has no member named 'uniquePress'
- if(b4.uniquePress()){
- ^
- time_animations:121: error: 'class Button' has no member named 'isPressed'
- if(b2.isPressed()){
- ^
- time_animations:122: error: 'class Button' has no member named 'uniquePress'
- if(b3.uniquePress()){
- ^
- time_animations:129: error: 'class Button' has no member named 'uniquePress'
- if(b4.uniquePress()){
- ^
- time_animations:139: error: 'class Button' has no member named 'isPressed'
- if( b1.isPressed() && b2.isPressed() ){
- ^
- time_animations:139: error: 'class Button' has no member named 'isPressed'
- if( b1.isPressed() && b2.isPressed() ){
- ^
- time_animations:140: error: 'class Button' has no member named 'uniquePress'
- if( b1.uniquePress() || b2.uniquePress() ){
- ^
- time_animations:140: error: 'class Button' has no member named 'uniquePress'
- if( b1.uniquePress() || b2.uniquePress() ){
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void big_time()':
- time_animations:233: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- time_animations:236: error: 'class Button' has no member named 'isPressed'
- if(b1.isPressed()){
- ^
- time_animations:237: error: 'class Button' has no member named 'uniquePress'
- if(b3.uniquePress()){
- ^
- time_animations:244: error: 'class Button' has no member named 'uniquePress'
- if(b4.uniquePress()){
- ^
- time_animations:264: error: 'class Button' has no member named 'isPressed'
- if(b2.isPressed()){
- ^
- time_animations:265: error: 'class Button' has no member named 'uniquePress'
- if(b3.uniquePress()){
- ^
- time_animations:272: error: 'class Button' has no member named 'uniquePress'
- if(b4.uniquePress()){
- ^
- time_animations:282: error: 'class Button' has no member named 'isPressed'
- if( b1.isPressed() && b2.isPressed() ){
- ^
- time_animations:282: error: 'class Button' has no member named 'isPressed'
- if( b1.isPressed() && b2.isPressed() ){
- ^
- time_animations:283: error: 'class Button' has no member named 'uniquePress'
- if( b1.uniquePress() || b2.uniquePress() ){
- ^
- time_animations:283: error: 'class Button' has no member named 'uniquePress'
- if( b1.uniquePress() || b2.uniquePress() ){
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void basic_date_time()':
- time_animations:388: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- time_animations:391: error: 'class Button' has no member named 'isPressed'
- if(b1.isPressed() && b2.isPressed()){
- ^
- time_animations:391: error: 'class Button' has no member named 'isPressed'
- if(b1.isPressed() && b2.isPressed()){
- ^
- time_animations:392: error: 'class Button' has no member named 'uniquePress'
- if(b3.uniquePress()){
- ^
- time_animations:400: error: 'class Button' has no member named 'uniquePress'
- if(b4.uniquePress()){
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:401:28: warning: comparison is always false due to limited range of data type [-Wtype-limits]
- if(time_now.month()==2099) RTC.adjust( DateTime(2000, time_now.month(), time_now.day(), time_now.hour(), time_now.minute(), time_now.second() ) );
- ^
- time_animations:411: error: 'class Button' has no member named 'isPressed'
- if(b1.isPressed()){
- ^
- time_animations:412: error: 'class Button' has no member named 'uniquePress'
- if(b3.uniquePress()){
- ^
- time_animations:420: error: 'class Button' has no member named 'uniquePress'
- if(b4.uniquePress()){
- ^
- time_animations:431: error: 'class Button' has no member named 'isPressed'
- if(b2.isPressed()){
- ^
- time_animations:432: error: 'class Button' has no member named 'uniquePress'
- if(b3.uniquePress()){
- ^
- time_animations:440: error: 'class Button' has no member named 'uniquePress'
- if(b4.uniquePress()){
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:322:8: warning: unused variable 'pend_x' [-Wunused-variable]
- byte pend_x;
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:323:8: warning: unused variable 'pend_y' [-Wunused-variable]
- byte pend_y;
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void column_time()':
- time_animations:535: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void float_time()':
- time_animations:631: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void seconds_time()':
- time_animations:686: error: 'class Button' has no member named 'isPressed'
- if(b1.isPressed() && b3.uniquePress()){
- ^
- time_animations:686: error: 'class Button' has no member named 'uniquePress'
- if(b1.isPressed() && b3.uniquePress()){
- ^
- time_animations:692: error: 'class Button' has no member named 'isPressed'
- if(b1.isPressed() && b4.uniquePress()){
- ^
- time_animations:692: error: 'class Button' has no member named 'uniquePress'
- if(b1.isPressed() && b4.uniquePress()){
- ^
- time_animations:699: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void percent_time()':
- time_animations:768: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void random_dot_time()':
- time_animations:856: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void pong_time()':
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:912:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
- if(millis()-time_ball >= ball_delay) {
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:1042:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
- if(millis()-time_paddle>=paddle_delay && ball_x_pos>0 && ball_x_pos<X_MAX) {
- ^
- time_animations:1117: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:886:8: warning: unused variable 'score_L' [-Wunused-variable]
- byte score_L=0;
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde:887:8: warning: unused variable 'score_R' [-Wunused-variable]
- byte score_R=0;
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void relative_column_time()':
- time_animations:1187: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void analog_dot_time()':
- time_animations:1285: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void morse_time()':
- time_animations:1617: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- C:\Users\Nikki\Documents\projects\avr\projects\dotklok\Glyn clock\FW 1.3\DOTKLOK_source_1-3\DOTKLOK_source_1-3\dotklok_rev_1_3\time_animations.pde: In function 'void binary_year_time()':
- time_animations:1697: error: 'class Button' has no member named 'isPressed'
- while( PAUSE && b5.isPressed( )); // pause mode for photos
- ^
- exit status 1
- variable 'font_3x5' must be const in order to be put into read-only section by means of '__attribute__((progmem))'
- This report would have more information with
- "Show verbose output during compilation"
- option enabled in File -> Preferences
Advertisement
Add Comment
Please, Sign In to add comment