Advertisement
Guest User

fehlercode

a guest
Mar 31st, 2020
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. Arduino: 1.8.12 (Windows 10), Board: "Arduino Uno"
  2.  
  3. In file included from sketch\HB-RC-12-EP.ino.cpp:1:0:
  4.  
  5. E:\Users\Curtis\Downloads\HB-RC-12-EP-master (1)\HB-RC-12-EP\HB-RC-12-EP.ino: In member function 'void ConfigChannel::configChanged()':
  6.  
  7. HB-RC-12-EP:244:74: error: 'ICON_COUNT' was not declared in this scope
  8.  
  9. DisplayLines[d].IconNumber = min(this->getList1().iconNumber(), ICON_COUNT + 2); // 0 = no icon, 1 = arrow, 2... icons from Icons.h
  10.  
  11. ^
  12.  
  13. C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:92:24: note: in definition of macro 'min'
  14.  
  15. #define min(a,b) ((a)<(b)?(a):(b))
  16.  
  17. ^
  18.  
  19. E:\Users\Curtis\Downloads\HB-RC-12-EP-master (1)\HB-RC-12-EP\HB-RC-12-EP.ino: In function 'void setup()':
  20.  
  21. HB-RC-12-EP:322:3: error: 'initIcons' was not declared in this scope
  22.  
  23. initIcons();
  24.  
  25. ^~~~~~~~~
  26.  
  27. E:\Users\Curtis\Downloads\HB-RC-12-EP-master (1)\HB-RC-12-EP\HB-RC-12-EP.ino: In function 'void updateDisplay()':
  28.  
  29. HB-RC-12-EP:397:19: error: 'Icons' was not declared in this scope
  30.  
  31. icon_width = Icons[icon_number].width;
  32.  
  33. ^~~~~
  34.  
  35. E:\Users\Curtis\Downloads\HB-RC-12-EP-master (1)\HB-RC-12-EP\HB-RC-12-EP.ino:397:19: note: suggested alternative: 'cos'
  36.  
  37. icon_width = Icons[icon_number].width;
  38.  
  39. ^~~~~
  40.  
  41. cos
  42.  
  43. exit status 1
  44. 'ICON_COUNT' was not declared in this scope
  45.  
  46. This report would have more information with
  47. "Show verbose output during compilation"
  48. option enabled in File -> Preferences.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement