Advertisement
Guest User

Untitled

a guest
Nov 7th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.45 KB | None | 0 0
  1. In file included from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:0:
  2.  
  3. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:14:21: note: #pragma message: FastLED version 3.003.002
  4.  
  5. # pragma message "FastLED version 3.003.002"
  6.  
  7. ^
  8.  
  9. In file included from C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:65:0,
  10.  
  11. from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:
  12.  
  13. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/fastspi.h:130:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output
  14.  
  15. # pragma message "No hardware SPI pins defined. All SPI access will default to bitbanged output"
  16.  
  17. ^
  18.  
  19. C:\Users\Sirma\Documents\Arduino\led\led.ino: In function 'void setup()':
  20.  
  21. led:6:18: error: 'D5' was not declared in this scope
  22.  
  23. #define DATA_PIN D5
  24.  
  25. ^
  26.  
  27. C:\Users\Sirma\Documents\Arduino\led\led.ino:13:28: note: in expansion of macro 'DATA_PIN'
  28.  
  29. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  30.  
  31. ^
  32.  
  33. led:13:65: error: no matching function for call to 'CFastLED::addLeds(CRGB [186], int)'
  34.  
  35. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  36.  
  37. ^
  38.  
  39. C:\Users\Sirma\Documents\Arduino\led\led.ino:13:65: note: candidates are:
  40.  
  41. In file included from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:0:
  42.  
  43. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:223:129: note: template<ESPIChipsets CHIPSET, unsigned char DATA_PIN, unsigned char CLOCK_PIN, EOrder RGB_ORDER, unsigned char SPI_DATA_RATE> CLEDController& CFastLED::addLeds(CRGB*, int, int)
  44.  
  45. template<ESPIChipsets CHIPSET, uint8_t DATA_PIN, uint8_t CLOCK_PIN, EOrder RGB_ORDER, uint8_t SPI_DATA_RATE > CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) {
  46.  
  47. ^
  48.  
  49. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:223:129: note: template argument deduction/substitution failed:
  50.  
  51. led:13:65: error: template argument 2 is invalid
  52.  
  53. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  54.  
  55. ^
  56.  
  57. In file included from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:0:
  58.  
  59. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:237:95: note: template<ESPIChipsets CHIPSET, unsigned char DATA_PIN, unsigned char CLOCK_PIN> static CLEDController& CFastLED::addLeds(CRGB*, int, int)
  60.  
  61. template<ESPIChipsets CHIPSET, uint8_t DATA_PIN, uint8_t CLOCK_PIN > static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) {
  62.  
  63. ^
  64.  
  65. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:237:95: note: template argument deduction/substitution failed:
  66.  
  67. led:13:65: error: template argument 2 is invalid
  68.  
  69. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  70.  
  71. ^
  72.  
  73. In file included from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:0:
  74.  
  75. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:251:113: note: template<ESPIChipsets CHIPSET, unsigned char DATA_PIN, unsigned char CLOCK_PIN, EOrder RGB_ORDER> static CLEDController& CFastLED::addLeds(CRGB*, int, int)
  76.  
  77. template<ESPIChipsets CHIPSET, uint8_t DATA_PIN, uint8_t CLOCK_PIN, EOrder RGB_ORDER > static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) {
  78.  
  79. ^
  80.  
  81. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:251:113: note: template argument deduction/substitution failed:
  82.  
  83. led:13:65: error: template argument 2 is invalid
  84.  
  85. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  86.  
  87. ^
  88.  
  89. In file included from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:0:
  90.  
  91. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:301:25: note: template<template<unsigned char DATA_PIN, EOrder RGB_ORDER> class CHIPSET, unsigned char DATA_PIN, EOrder RGB_ORDER> static CLEDController& CFastLED::addLeds(CRGB*, int, int)
  92.  
  93. static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) {
  94.  
  95. ^
  96.  
  97. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:301:25: note: template argument deduction/substitution failed:
  98.  
  99. led:13:65: error: template argument 2 is invalid
  100.  
  101. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  102.  
  103. ^
  104.  
  105. In file included from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:0:
  106.  
  107. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:307:25: note: template<template<unsigned char DATA_PIN, EOrder RGB_ORDER> class CHIPSET, unsigned char DATA_PIN> static CLEDController& CFastLED::addLeds(CRGB*, int, int)
  108.  
  109. static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) {
  110.  
  111. ^
  112.  
  113. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:307:25: note: template argument deduction/substitution failed:
  114.  
  115. led:13:65: error: wrong number of template arguments (3, should be 2)
  116.  
  117. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  118.  
  119. ^
  120.  
  121. In file included from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:0:
  122.  
  123. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:313:25: note: template<template<unsigned char DATA_PIN> class CHIPSET, unsigned char DATA_PIN> static CLEDController& CFastLED::addLeds(CRGB*, int, int)
  124.  
  125. static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) {
  126.  
  127. ^
  128.  
  129. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:313:25: note: template argument deduction/substitution failed:
  130.  
  131. led:13:65: error: wrong number of template arguments (3, should be 2)
  132.  
  133. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  134.  
  135. ^
  136.  
  137. In file included from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:0:
  138.  
  139. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:357:25: note: template<template<EOrder RGB_ORDER> class CHIPSET, EOrder RGB_ORDER> static CLEDController& CFastLED::addLeds(CRGB*, int, int)
  140.  
  141. static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) {
  142.  
  143. ^
  144.  
  145. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:357:25: note: template argument deduction/substitution failed:
  146.  
  147. led:13:65: error: wrong number of template arguments (3, should be 2)
  148.  
  149. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  150.  
  151. ^
  152.  
  153. In file included from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:0:
  154.  
  155. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:363:25: note: template<template<EOrder RGB_ORDER> class CHIPSET> static CLEDController& CFastLED::addLeds(CRGB*, int, int)
  156.  
  157. static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) {
  158.  
  159. ^
  160.  
  161. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:363:25: note: template argument deduction/substitution failed:
  162.  
  163. led:13:65: error: wrong number of template arguments (3, should be 1)
  164.  
  165. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  166.  
  167. ^
  168.  
  169. In file included from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:0:
  170.  
  171. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:431:25: note: template<EBlockChipsets CHIPSET, int NUM_LANES, EOrder RGB_ORDER> static CLEDController& CFastLED::addLeds(CRGB*, int, int)
  172.  
  173. static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) {
  174.  
  175. ^
  176.  
  177. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:431:25: note: template argument deduction/substitution failed:
  178.  
  179. led:13:65: error: template argument 2 is invalid
  180.  
  181. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  182.  
  183. ^
  184.  
  185. In file included from C:\Users\Sirma\Documents\Arduino\led\led.ino:3:0:
  186.  
  187. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:472:25: note: template<EBlockChipsets CHIPSET, int NUM_LANES> static CLEDController& CFastLED::addLeds(CRGB*, int, int)
  188.  
  189. static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) {
  190.  
  191. ^
  192.  
  193. C:\Users\Sirma\Documents\Arduino\libraries\FastLED/FastLED.h:472:25: note: template argument deduction/substitution failed:
  194.  
  195. led:13:65: error: wrong number of template arguments (3, should be 2)
  196.  
  197. FastLED.addLeds<CHIPSET, DATA_PIN, COLOR_ORDER>(leds, NUM_LEDS);
  198.  
  199. ^
  200.  
  201. Multiple libraries were found for "FastLED.h"
  202. Used: C:\Users\Sirma\Documents\Arduino\libraries\FastLED
  203. exit status 1
  204. 'D5' was not declared in this scope
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement