Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. Arduino: 1.8.9 (Windows Store 1.8.21.0) (Windows 10), Board: "Generic ESP8266 Module, 80 MHz, Flash, Disabled, All SSL ciphers (most compatible), ck, 26 MHz, 40MHz, DOUT (compatible), 4M (3M SPIFFS), 2, nonos-sdk 2.2.1 (legacy), v2 Lower Memory, Disabled, None, Only Sketch, 115200"
  2.  
  3. In file included from C:\Users\lette\Documents\Arduino\web_socket_leds\web_socket_leds.ino:4:0:
  4.  
  5. C:\Users\lette\Documents\Arduino\libraries\FastLED-3.3.2/FastLED.h:14:21: note: #pragma message: FastLED version 3.003.002
  6.  
  7. # pragma message "FastLED version 3.003.002"
  8.  
  9. ^
  10.  
  11. In file included from C:\Users\lette\Documents\Arduino\libraries\FastLED-3.3.2/FastLED.h:65:0,
  12.  
  13. from C:\Users\lette\Documents\Arduino\web_socket_leds\web_socket_leds.ino:4:
  14.  
  15. C:\Users\lette\Documents\Arduino\libraries\FastLED-3.3.2/fastspi.h:130:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output
  16.  
  17. # pragma message "No hardware SPI pins defined. All SPI access will default to bitbanged output"
  18.  
  19. ^
  20.  
  21. In file included from C:\Users\lette\Documents\Arduino\web_socket_leds\web_socket_leds.ino:31:0:
  22.  
  23. sketch\led_effects.h: In function 'void color_bounceFADE()':
  24.  
  25. led_effects.h:95:29: error: 'adjacent_cw' was not declared in this scope
  26.  
  27. int iL1 = adjacent_cw(idex);
  28.  
  29. ^
  30.  
  31. led_effects.h:98:30: error: 'adjacent_ccw' was not declared in this scope
  32.  
  33. int iR1 = adjacent_ccw(idex);
  34.  
  35. ^
  36.  
  37. sketch\led_effects.h: In function 'void red_blue_bounce()':
  38.  
  39. led_effects.h:139:36: error: 'antipodal_index' was not declared in this scope
  40.  
  41. int idexB = antipodal_index(idexR);
  42.  
  43. ^
  44.  
  45. sketch\led_effects.h: In function 'void fade_vertical()':
  46.  
  47. led_effects.h:201:37: error: 'horizontal_index' was not declared in this scope
  48.  
  49. int idexB = horizontal_index(idexA);
  50.  
  51. ^
  52.  
  53. sketch\led_effects.h: In function 'void rule30()':
  54.  
  55. led_effects.h:248:18: error: 'copy_led_array' was not declared in this scope
  56.  
  57. copy_led_array();
  58.  
  59. ^
  60.  
  61. led_effects.h:253:24: error: 'adjacent_cw' was not declared in this scope
  62.  
  63. iCW = adjacent_cw(i);
  64.  
  65. ^
  66.  
  67. led_effects.h:254:26: error: 'adjacent_ccw' was not declared in this scope
  68.  
  69. iCCW = adjacent_ccw(i);
  70.  
  71. ^
  72.  
  73. sketch\led_effects.h: In function 'void random_march()':
  74.  
  75. led_effects.h:305:18: error: 'copy_led_array' was not declared in this scope
  76.  
  77. copy_led_array();
  78.  
  79. ^
  80.  
  81. sketch\led_effects.h: In function 'void Fire(int, int, int)':
  82.  
  83. led_effects.h:531:34: error: 'setPixelHeatColor' was not declared in this scope
  84.  
  85. setPixelHeatColor(j, heat[j] );
  86.  
  87. ^
  88.  
  89. sketch\led_effects.h: In function 'void blueFire(int, int, int)':
  90.  
  91. led_effects.h:671:38: error: 'setPixelHeatColorBlue' was not declared in this scope
  92.  
  93. setPixelHeatColorBlue(j, heat[j] );
  94.  
  95. ^
  96.  
  97. sketch\led_effects.h: In function 'void blende()':
  98.  
  99. led_effects.h:721:13: error: 'fadeall' was not declared in this scope
  100.  
  101. fadeall();
  102.  
  103. ^
  104.  
  105. led_effects.h:729:13: error: 'fadeall' was not declared in this scope
  106.  
  107. fadeall();
  108.  
  109. ^
  110.  
  111. sketch\led_effects.h: In function 'void blende_2()':
  112.  
  113. led_effects.h:740:13: error: 'fadeall' was not declared in this scope
  114.  
  115. fadeall();
  116.  
  117. ^
  118.  
  119. led_effects.h:748:13: error: 'fadeall' was not declared in this scope
  120.  
  121. fadeall();
  122.  
  123. ^
  124.  
  125. exit status 1
  126. 'adjacent_cw' was not declared in this scope
  127.  
  128. This report would have more information with
  129. "Show verbose output during compilation"
  130. option enabled in File -> Preferences.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement