Advertisement
Guest User

solderstation_error

a guest
Nov 28th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. Arduino: 1.6.6 (Windows 7), Board: "Arduino Pro or Pro Mini, ATmega328 (5V, 16 MHz)"
  2.  
  3. In file included from H:\Arduino\SolderStation\SolderStation.ino:14:0:
  4.  
  5. iron.h:9: error: 'prog_uint8_t' does not name a type
  6.  
  7. const prog_uint8_t iron[] PROGMEM={
  8.  
  9. ^
  10.  
  11. In file included from H:\Arduino\SolderStation\SolderStation.ino:15:0:
  12.  
  13. stationLOGO.h:9: error: 'prog_uint8_t' does not name a type
  14.  
  15. const prog_uint8_t stationLOGO1[] PROGMEM={
  16.  
  17. ^
  18.  
  19. stationLOGO.h:60: error: 'prog_uint8_t' does not name a type
  20.  
  21. const prog_uint8_t stationLOGO2[] PROGMEM={
  22.  
  23. ^
  24.  
  25. stationLOGO.h:111: error: 'prog_uint8_t' does not name a type
  26.  
  27. const prog_uint8_t stationLOGO3[] PROGMEM={
  28.  
  29. ^
  30.  
  31. H:\Arduino\SolderStation\SolderStation.ino: In function 'void setup()':
  32.  
  33. SolderStation:90: error: 'stationLOGO1' was not declared in this scope
  34.  
  35. tft.drawBitmap(2,1,stationLOGO1,124,47,ST7735_GREY);
  36.  
  37. ^
  38.  
  39. SolderStation:92: error: 'stationLOGO2' was not declared in this scope
  40.  
  41. tft.drawBitmap(3,3,stationLOGO2,124,47,Color565(254,147,52));
  42.  
  43. ^
  44.  
  45. SolderStation:93: error: 'stationLOGO3' was not declared in this scope
  46.  
  47. tft.drawBitmap(3,3,stationLOGO3,124,47,Color565(255,78,0));
  48.  
  49. ^
  50.  
  51. SolderStation:102: error: 'iron' was not declared in this scope
  52.  
  53. tft.drawBitmap(15,50,iron,100,106,ST7735_GREY);
  54.  
  55. ^
  56.  
  57. Bibliothek Adafruit_GFX in Version 1.0.2 im Ordner: H:\Arduino\libraries\Adafruit_GFX wird verwendet
  58. Bibliothek Adafruit_ST7735 in Version 1.0.4 im Ordner: H:\Arduino\libraries\Adafruit_ST7735 wird verwendet
  59. Bibliothek SPI in Version 1.0 im Ordner: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\SPI wird verwendet
  60. Bibliothek FastLED in Version 3.1.0 im Ordner: H:\Arduino\libraries\FastLED wird verwendet
  61. exit status 1
  62. 'prog_uint8_t' does not name a type
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement