Advertisement
mannymiller

Aurora teensy errors

Nov 19th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 39.86 KB | None | 0 0
  1. Arduino: 1.6.12 (Windows 10), TD: 1.31, Board: "Teensy 3.5, Serial, 120 MHz, US English"
  2.  
  3. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:63:0:
  4.  
  5. C:\Users\Mannys\Documents\Arduino\libraries\FastLED/FastLED.h:563:2: warning: #warning "No pin/port mappings found, pin access will be slightly slower. See fastpin.h for info." [-Wcpp]
  6.  
  7. #warning "No pin/port mappings found, pin access will be slightly slower. See fastpin.h for info."
  8.  
  9. ^
  10.  
  11. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:63:0:
  12.  
  13. C:\Users\Mannys\Documents\Arduino\libraries\FastLED/FastLED.h:17:21: note: #pragma message: FastLED version 3.001.006
  14.  
  15. # pragma message "FastLED version 3.001.006"
  16.  
  17. ^
  18.  
  19. In file included from C:\Users\Mannys\Documents\Arduino\libraries\FastLED/FastLED.h:68:0,
  20.  
  21. from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:63:
  22.  
  23. C:\Users\Mannys\Documents\Arduino\libraries\FastLED/fastspi.h:110:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output
  24.  
  25. # pragma message "No hardware SPI pins defined. All SPI access will default to bitbanged output"
  26.  
  27. ^
  28.  
  29. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:70:0:
  30.  
  31. C:\Users\Mannys\Documents\Arduino\libraries\DS1307RTC/DS1307RTC.h:19:22: error: 'tmElements_t' has not been declared
  32.  
  33. static bool read(tmElements_t &tm);
  34.  
  35. ^
  36.  
  37. C:\Users\Mannys\Documents\Arduino\libraries\DS1307RTC/DS1307RTC.h:20:23: error: 'tmElements_t' has not been declared
  38.  
  39. static bool write(tmElements_t &tm);
  40.  
  41. ^
  42.  
  43. Aurora64x64:179: error: 'tmElements_t' does not name a type
  44. tmElements_t time;
  45.  
  46. ^
  47.  
  48. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:182:0:
  49.  
  50. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\ClockDigitalShort.h: In member function 'unsigned int ClockDigitalShort::drawFrame(int)':
  51.  
  52. ClockDigitalShort.h:60: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  53. uint8_t hour = time.Hour;
  54.  
  55. ^
  56.  
  57. ClockDigitalShort.h:67: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  58. sprintf(timeBuffer, "%d:%02d", hour, time.Minute);
  59.  
  60. ^
  61.  
  62. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:185:0:
  63.  
  64. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\ClockText.h: In member function 'unsigned int ClockText::drawFrame(int)':
  65.  
  66. ClockText.h:87: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  67. uint8_t hour = time.Hour;
  68.  
  69. ^
  70.  
  71. ClockText.h:88: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  72. uint8_t minute = time.Minute;
  73.  
  74. ^
  75.  
  76. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:188:0:
  77.  
  78. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\ClockCountdown.h: At global scope:
  79.  
  80. ClockCountdown.h:35: error: 'tmElements_t' does not name a type
  81. tmElements_t target;
  82.  
  83. ^
  84.  
  85. ClockCountdown.h:36: error: 'tmElements_t' does not name a type
  86. tmElements_t remaining;
  87.  
  88. ^
  89.  
  90. ClockCountdown.h:43: error: 'tmElements_t' has not been declared
  91. void printTime(tmElements_t t) {
  92.  
  93. ^
  94.  
  95. ClockCountdown.h:95: error: 'tmElements_t' does not name a type
  96. tmElements_t loadDateTimeSetting(const char* name) {
  97.  
  98. ^
  99.  
  100. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\ClockCountdown.h: In member function 'void ClockCountdown::printTime(int)':
  101.  
  102. ClockCountdown.h:44: error: request for member 'Year' in 't', which is of non-class type 'int'
  103. Serial.print(t.Year);
  104.  
  105. ^
  106.  
  107. ClockCountdown.h:46: error: request for member 'Month' in 't', which is of non-class type 'int'
  108. Serial.print(t.Month);
  109.  
  110. ^
  111.  
  112. ClockCountdown.h:48: error: request for member 'Day' in 't', which is of non-class type 'int'
  113. Serial.print(t.Day);
  114.  
  115. ^
  116.  
  117. ClockCountdown.h:52: error: request for member 'Hour' in 't', which is of non-class type 'int'
  118. Serial.print(t.Hour);
  119.  
  120. ^
  121.  
  122. ClockCountdown.h:54: error: request for member 'Minute' in 't', which is of non-class type 'int'
  123. Serial.print(t.Minute);
  124.  
  125. ^
  126.  
  127. ClockCountdown.h:56: error: request for member 'Second' in 't', which is of non-class type 'int'
  128. Serial.println(t.Second);
  129.  
  130. ^
  131.  
  132. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\ClockCountdown.h: In member function 'virtual unsigned int ClockCountdown::drawFrame()':
  133.  
  134. ClockCountdown.h:61: error: 'makeTime' was not declared in this scope
  135. time_t currentTime = makeTime(time);
  136.  
  137. ^
  138.  
  139. ClockCountdown.h:71: error: 'SECS_PER_HOUR' was not declared in this scope
  140. uint8_t hoursRemaining = timeRemaining / SECS_PER_HOUR;
  141.  
  142. ^
  143.  
  144. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\ClockCountdown.h: In member function 'void ClockCountdown::loadSettings()':
  145.  
  146. ClockCountdown.h:138: error: 'target' was not declared in this scope
  147. target = loadDateTimeSetting("countdwn.txt");
  148.  
  149. ^
  150.  
  151. ClockCountdown.h:138: error: 'loadDateTimeSetting' was not declared in this scope
  152. target = loadDateTimeSetting("countdwn.txt");
  153.  
  154. ^
  155.  
  156. ClockCountdown.h:139: error: 'makeTime' was not declared in this scope
  157. targetTime = makeTime(target);
  158.  
  159. ^
  160.  
  161. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:191:0:
  162.  
  163. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\ClockPong.h: In member function 'virtual void ClockPong::start()':
  164.  
  165. ClockPong.h:70: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  166. mins = time.Minute;
  167.  
  168. ^
  169.  
  170. ClockPong.h:71: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  171. hours = time.Hour;
  172.  
  173. ^
  174.  
  175. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\ClockPong.h: In member function 'virtual unsigned int ClockPong::drawFrame()':
  176.  
  177. ClockPong.h:91: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  178. if (time.Second % 2 == 0) {
  179.  
  180. ^
  181.  
  182. ClockPong.h:148: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  183. if (time.Second == 59 && time.Minute < 59) {
  184.  
  185. ^
  186.  
  187. ClockPong.h:148: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  188. if (time.Second == 59 && time.Minute < 59) {
  189.  
  190. ^
  191.  
  192. ClockPong.h:152: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  193. if (time.Second == 59 && time.Minute == 59) {
  194.  
  195. ^
  196.  
  197. ClockPong.h:152: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  198. if (time.Second == 59 && time.Minute == 59) {
  199.  
  200. ^
  201.  
  202. ClockPong.h:372: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  203. mins = time.Minute;
  204.  
  205. ^
  206.  
  207. ClockPong.h:373: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  208. hours = time.Hour;
  209.  
  210. ^
  211.  
  212. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:194:0:
  213.  
  214. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\ClockDisplay.h: In member function 'bool ClockDisplay::readTimeHardware()':
  215.  
  216. ClockDisplay.h:90: error: no matching function for call to 'DS1307RTC::read(time_t (&)(time_t*))'
  217. if (RTC.read(time)) {
  218.  
  219. ^
  220.  
  221. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\ClockDisplay.h:90:24: note: candidate is:
  222.  
  223. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:70:0:
  224.  
  225. C:\Users\Mannys\Documents\Arduino\libraries\DS1307RTC/DS1307RTC.h:19:17: note: static bool DS1307RTC::read(int&)
  226.  
  227. static bool read(tmElements_t &tm);
  228.  
  229. ^
  230.  
  231. C:\Users\Mannys\Documents\Arduino\libraries\DS1307RTC/DS1307RTC.h:19:17: note: no known conversion for argument 1 from 'time_t(time_t*) {aka long int(long int*)}' to 'int&'
  232.  
  233. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:194:0:
  234.  
  235. ClockDisplay.h:97: error: 'setSyncProvider' was not declared in this scope
  236. setSyncProvider(getTeensy3Time);
  237.  
  238. ^
  239.  
  240. ClockDisplay.h:101: error: 'now' was not declared in this scope
  241. breakTime(now(), time);
  242.  
  243. ^
  244.  
  245. ClockDisplay.h:101: error: 'breakTime' was not declared in this scope
  246. breakTime(now(), time);
  247.  
  248. ^
  249.  
  250. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\ClockDisplay.h: In member function 'void ClockDisplay::loadSettings()':
  251.  
  252. ClockDisplay.h:149: error: 'makeTime' was not declared in this scope
  253. time_t currentTime = makeTime(time);
  254.  
  255. ^
  256.  
  257. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:72:0:
  258.  
  259. C:\Users\Mannys\Documents\Arduino\libraries\AnimatedGIF/GifDecoder.h: In member function 'virtual unsigned int Animations::drawFrame()':
  260.  
  261. GifDecoder.h:83: error: 'int GifDecoder<64, 64, 12>::frameDelay' is private
  262. int frameDelay;
  263.  
  264. ^
  265.  
  266. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:203:0:
  267.  
  268. Animations.h:95: error: within this context
  269. return gifDecoder.frameDelay * 10;
  270.  
  271. ^
  272.  
  273. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\Animations.h: In member function 'virtual void Animations::stop()':
  274.  
  275. Animations.h:103: error: 'fileClose' was not declared in this scope
  276. fileClose();
  277.  
  278. ^
  279.  
  280. In file included from C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\Settings.h:29:0,
  281.  
  282. from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:229:
  283.  
  284. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\SettingsSetTime.h: In member function 'void SettingsSetTime::setTimeHardware()':
  285.  
  286. SettingsSetTime.h:35: error: no matching function for call to 'DS1307RTC::write(time_t (&)(time_t*))'
  287. RTC.write(time);
  288.  
  289. ^
  290.  
  291. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\SettingsSetTime.h:35:23: note: candidate is:
  292.  
  293. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:70:0:
  294.  
  295. C:\Users\Mannys\Documents\Arduino\libraries\DS1307RTC/DS1307RTC.h:20:17: note: static bool DS1307RTC::write(int&)
  296.  
  297. static bool write(tmElements_t &tm);
  298.  
  299. ^
  300.  
  301. C:\Users\Mannys\Documents\Arduino\libraries\DS1307RTC/DS1307RTC.h:20:17: note: no known conversion for argument 1 from 'time_t(time_t*) {aka long int(long int*)}' to 'int&'
  302.  
  303. In file included from C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\Settings.h:29:0,
  304.  
  305. from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:229:
  306.  
  307. SettingsSetTime.h:37: error: 'makeTime' was not declared in this scope
  308. time_t t = makeTime(time);
  309.  
  310. ^
  311.  
  312. SettingsSetTime.h:39: error: 'setTime' was not declared in this scope
  313. setTime(t);
  314.  
  315. ^
  316.  
  317. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\SettingsSetTime.h: In member function 'void SettingsSetTime::draw()':
  318.  
  319. SettingsSetTime.h:95: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  320. sprintf(timeBuffer, "%02d-%02d-%02d", time.Hour, time.Minute, time.Second);
  321.  
  322. ^
  323.  
  324. SettingsSetTime.h:95: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  325. sprintf(timeBuffer, "%02d-%02d-%02d", time.Hour, time.Minute, time.Second);
  326.  
  327. ^
  328.  
  329. SettingsSetTime.h:95: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  330. sprintf(timeBuffer, "%02d-%02d-%02d", time.Hour, time.Minute, time.Second);
  331.  
  332. ^
  333.  
  334. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\SettingsSetTime.h: In member function 'void SettingsSetTime::adjust(int)':
  335.  
  336. SettingsSetTime.h:146: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  337. if (d > 0 && time.Hour == 23)
  338.  
  339. ^
  340.  
  341. SettingsSetTime.h:147: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  342. time.Hour = 0;
  343.  
  344. ^
  345.  
  346. SettingsSetTime.h:148: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  347. else if (d < 1 && time.Hour == 0)
  348.  
  349. ^
  350.  
  351. SettingsSetTime.h:149: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  352. time.Hour = 23;
  353.  
  354. ^
  355.  
  356. SettingsSetTime.h:151: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  357. time.Hour += d;
  358.  
  359. ^
  360.  
  361. SettingsSetTime.h:155: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  362. if (d > 0 && time.Minute == 59)
  363.  
  364. ^
  365.  
  366. SettingsSetTime.h:156: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  367. time.Minute = 0;
  368.  
  369. ^
  370.  
  371. SettingsSetTime.h:157: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  372. else if (d < 1 && time.Minute == 0)
  373.  
  374. ^
  375.  
  376. SettingsSetTime.h:158: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  377. time.Minute = 59;
  378.  
  379. ^
  380.  
  381. SettingsSetTime.h:160: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  382. time.Minute += d;
  383.  
  384. ^
  385.  
  386. SettingsSetTime.h:165: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  387. if (d > 0 && time.Second == 59)
  388.  
  389. ^
  390.  
  391. SettingsSetTime.h:166: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  392. time.Second = 0;
  393.  
  394. ^
  395.  
  396. SettingsSetTime.h:167: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  397. else if (d < 1 && time.Second == 0)
  398.  
  399. ^
  400.  
  401. SettingsSetTime.h:168: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  402. time.Second = 59;
  403.  
  404. ^
  405.  
  406. SettingsSetTime.h:170: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  407. time.Second += d;
  408.  
  409. ^
  410.  
  411. In file included from C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\Settings.h:30:0,
  412.  
  413. from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:229:
  414.  
  415. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\SettingsSetDate.h: In member function 'void SettingsSetDate::setTimeHardware()':
  416.  
  417. SettingsSetDate.h:48: error: no matching function for call to 'DS1307RTC::write(time_t (&)(time_t*))'
  418. RTC.write(time);
  419.  
  420. ^
  421.  
  422. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\SettingsSetDate.h:48:23: note: candidate is:
  423.  
  424. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:70:0:
  425.  
  426. C:\Users\Mannys\Documents\Arduino\libraries\DS1307RTC/DS1307RTC.h:20:17: note: static bool DS1307RTC::write(int&)
  427.  
  428. static bool write(tmElements_t &tm);
  429.  
  430. ^
  431.  
  432. C:\Users\Mannys\Documents\Arduino\libraries\DS1307RTC/DS1307RTC.h:20:17: note: no known conversion for argument 1 from 'time_t(time_t*) {aka long int(long int*)}' to 'int&'
  433.  
  434. In file included from C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\Settings.h:30:0,
  435.  
  436. from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:229:
  437.  
  438. SettingsSetDate.h:50: error: 'makeTime' was not declared in this scope
  439. time_t t = makeTime(time);
  440.  
  441. ^
  442.  
  443. SettingsSetDate.h:52: error: 'setTime' was not declared in this scope
  444. setTime(t);
  445.  
  446. ^
  447.  
  448. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\SettingsSetDate.h: In member function 'void SettingsSetDate::draw()':
  449.  
  450. SettingsSetDate.h:107: error: request for member 'Year' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  451. uint16_t year = time.Year + 1970;
  452.  
  453. ^
  454.  
  455. SettingsSetDate.h:113: error: request for member 'Month' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  456. sprintf(timeBuffer, "%02d-%02d-%02d", year, time.Month, time.Day);
  457.  
  458. ^
  459.  
  460. SettingsSetDate.h:113: error: request for member 'Day' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  461. sprintf(timeBuffer, "%02d-%02d-%02d", year, time.Month, time.Day);
  462.  
  463. ^
  464.  
  465. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\SettingsSetDate.h: In member function 'void SettingsSetDate::adjust(int)':
  466.  
  467. SettingsSetDate.h:168: error: request for member 'Year' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  468. if (d > 0 || time.Year > 0)
  469.  
  470. ^
  471.  
  472. SettingsSetDate.h:169: error: request for member 'Year' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  473. time.Year += d;
  474.  
  475. ^
  476.  
  477. SettingsSetDate.h:173: error: request for member 'Month' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  478. if (d > 0 && time.Month == 12)
  479.  
  480. ^
  481.  
  482. SettingsSetDate.h:174: error: request for member 'Month' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  483. time.Month = 1;
  484.  
  485. ^
  486.  
  487. SettingsSetDate.h:175: error: request for member 'Month' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  488. else if (d < 1 && time.Month == 1)
  489.  
  490. ^
  491.  
  492. SettingsSetDate.h:176: error: request for member 'Month' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  493. time.Month = 12;
  494.  
  495. ^
  496.  
  497. SettingsSetDate.h:178: error: request for member 'Month' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  498. time.Month += d;
  499.  
  500. ^
  501.  
  502. SettingsSetDate.h:182: error: request for member 'Day' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  503. if (d > 0 && time.Day == 31)
  504.  
  505. ^
  506.  
  507. SettingsSetDate.h:183: error: request for member 'Day' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  508. time.Day = 1;
  509.  
  510. ^
  511.  
  512. SettingsSetDate.h:184: error: request for member 'Day' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  513. else if (d < 1 && time.Day == 1)
  514.  
  515. ^
  516.  
  517. SettingsSetDate.h:185: error: request for member 'Day' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  518. time.Day = 31;
  519.  
  520. ^
  521.  
  522. SettingsSetDate.h:187: error: request for member 'Day' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  523. time.Day += d;
  524.  
  525. ^
  526.  
  527. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:229:0:
  528.  
  529. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\Settings.h: In member function 'void Settings::openImageFile()':
  530.  
  531. Settings.h:100: error: 'openGifFilename' was not declared in this scope
  532. if(!openGifFilename(filepath))
  533.  
  534. ^
  535.  
  536. C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\Settings.h: In member function 'virtual void Settings::stop()':
  537.  
  538. Settings.h:153: error: 'fileClose' was not declared in this scope
  539. fileClose();
  540.  
  541. ^
  542.  
  543. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:72:0:
  544.  
  545. GifDecoder.h: In function 'void drawPixelCallback(int16_t, int16_t, uint8_t, uint8_t, uint8_t)':
  546. GifDecoder.h:69: error: 'int GifDecoder<64, 64, 12>::lsdWidth' is private
  547. int lsdWidth;
  548.  
  549. ^
  550.  
  551. Aurora64x64:278: error: within this context
  552. if (gifDecoder.lsdWidth == 32 && gifDecoder.lsdHeight == 32) {
  553.  
  554. ^
  555.  
  556. In file included from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:72:0:
  557.  
  558. GifDecoder.h:70: error: 'int GifDecoder<64, 64, 12>::lsdHeight' is private
  559. int lsdHeight;
  560.  
  561. ^
  562.  
  563. Aurora64x64:278: error: within this context
  564. if (gifDecoder.lsdWidth == 32 && gifDecoder.lsdHeight == 32) {
  565.  
  566. ^
  567.  
  568. Aurora64x64: In function 'void dateTime(uint16_t*, uint16_t*)':
  569. Aurora64x64:1000: error: request for member 'Year' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  570. *date = FAT_DATE(tmYearToCalendar(time.Year), time.Month, time.Day);
  571.  
  572. ^
  573.  
  574. Aurora64x64:1000: error: 'tmYearToCalendar' was not declared in this scope
  575. *date = FAT_DATE(tmYearToCalendar(time.Year), time.Month, time.Day);
  576.  
  577. ^
  578.  
  579. Aurora64x64:1000: error: request for member 'Month' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  580. *date = FAT_DATE(tmYearToCalendar(time.Year), time.Month, time.Day);
  581.  
  582. ^
  583.  
  584. Aurora64x64:1000: error: request for member 'Day' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  585. *date = FAT_DATE(tmYearToCalendar(time.Year), time.Month, time.Day);
  586.  
  587. ^
  588.  
  589. Aurora64x64:1003: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  590. *time2 = FAT_TIME(time.Hour, time.Minute, time.Second);
  591.  
  592. ^
  593.  
  594. Aurora64x64:1003: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  595. *time2 = FAT_TIME(time.Hour, time.Minute, time.Second);
  596.  
  597. ^
  598.  
  599. Aurora64x64:1003: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
  600. *time2 = FAT_TIME(time.Hour, time.Minute, time.Second);
  601.  
  602. ^
  603.  
  604. C:\Users\Mannys\Documents\Arduino\Aurora64x64\AnimatedGIFs.ino: At global scope:
  605.  
  606. AnimatedGIFs:91: error: redefinition of 'const uint8_t kMatrixWidth'
  607. const uint8_t kMatrixWidth = 32; // known working: 32, 64, 96, 128
  608.  
  609. ^
  610.  
  611. Aurora64x64:30: error: 'const uint8_t kMatrixWidth' previously defined here
  612. const uint8_t kMatrixWidth = 64; // known working: 32, 64, 96, 128
  613.  
  614. ^
  615.  
  616. AnimatedGIFs:92: error: redefinition of 'const uint8_t kMatrixHeight'
  617. const uint8_t kMatrixHeight = 32; // known working: 16, 32, 48, 64
  618.  
  619. ^
  620.  
  621. Aurora64x64:31: error: 'const uint8_t kMatrixHeight' previously defined here
  622. const uint8_t kMatrixHeight = 64; // known working: 16, 32, 48, 64
  623.  
  624. ^
  625.  
  626. AnimatedGIFs:93: error: redefinition of 'const uint8_t kRefreshDepth'
  627. const uint8_t kRefreshDepth = 36; // known working: 24, 36, 48
  628.  
  629. ^
  630.  
  631. Aurora64x64:32: error: 'const uint8_t kRefreshDepth' previously defined here
  632. const uint8_t kRefreshDepth = 36; // known working: 24, 36, 48
  633.  
  634. ^
  635.  
  636. AnimatedGIFs:94: error: redefinition of 'const uint8_t kDmaBufferRows'
  637. const uint8_t kDmaBufferRows = 2; // known working: 2-4
  638.  
  639. ^
  640.  
  641. Aurora64x64:33: error: 'const uint8_t kDmaBufferRows' previously defined here
  642. const uint8_t kDmaBufferRows = 4; // known working: 2-4, use 2 to save memory, more to keep from dropping frames and automatically lowering refresh rate
  643.  
  644. ^
  645.  
  646. AnimatedGIFs:95: error: redefinition of 'const uint8_t kPanelType'
  647. const uint8_t kPanelType = SMARTMATRIX_HUB75_32ROW_MOD16SCAN; // use SMARTMATRIX_HUB75_16ROW_MOD8SCAN for common 16x32 panels
  648.  
  649. ^
  650.  
  651. Aurora64x64:34: error: 'const uint8_t kPanelType' previously defined here
  652. const uint8_t kPanelType = SMARTMATRIX_HUB75_32ROW_MOD16SCAN; // use SMARTMATRIX_HUB75_16ROW_MOD8SCAN for common 16x32 panels
  653.  
  654. ^
  655.  
  656. AnimatedGIFs:96: error: redefinition of 'const uint8_t kMatrixOptions'
  657. const uint8_t kMatrixOptions = (SMARTMATRIX_OPTIONS_NONE); // see http://docs.pixelmatix.com/SmartMatrix for options
  658.  
  659. ^
  660.  
  661. Aurora64x64:35: error: 'const uint8_t kMatrixOptions' previously defined here
  662. const uint8_t kMatrixOptions = (SMARTMATRIX_OPTIONS_NONE); // see http://docs.pixelmatix.com/SmartMatrix for options
  663.  
  664. ^
  665.  
  666. AnimatedGIFs:97: error: redefinition of 'const uint8_t kBackgroundLayerOptions'
  667. const uint8_t kBackgroundLayerOptions = (SM_BACKGROUND_OPTIONS_NONE);
  668.  
  669. ^
  670.  
  671. Aurora64x64:36: error: 'const uint8_t kBackgroundLayerOptions' previously defined here
  672. const uint8_t kBackgroundLayerOptions = (SM_BACKGROUND_OPTIONS_NONE);
  673.  
  674. ^
  675.  
  676. AnimatedGIFs:98: error: redefinition of 'const uint8_t kScrollingLayerOptions'
  677. const uint8_t kScrollingLayerOptions = (SM_SCROLLING_OPTIONS_NONE);
  678.  
  679. ^
  680.  
  681. Aurora64x64:37: error: 'const uint8_t kScrollingLayerOptions' previously defined here
  682. const uint8_t kScrollingLayerOptions = (SM_SCROLLING_OPTIONS_NONE);
  683.  
  684. ^
  685.  
  686. In file included from C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartLEDShieldV4.h:5:0,
  687.  
  688. from C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\Hardware.h:23,
  689.  
  690. from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:25:
  691.  
  692. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:151:249: error: redefinition of 'uint32_t matrixUpdateData [3084]'
  693.  
  694. static DMAMEM uint32_t matrixUpdateData[buffer_rows * (pwm_depth/COLOR_CHANNELS_PER_PIXEL / sizeof(uint32_t)) * ((((width * height) / CONVERT_PANELTYPE_TO_MATRIXPANELHEIGHT(panel_type)) * DMA_UPDATES_PER_CLOCK + ADDX_UPDATE_BEFORE_LATCH_BYTES))]; \
  695.  
  696. ^
  697.  
  698. C:\Users\Mannys\Documents\Arduino\Aurora64x64\AnimatedGIFs.ino:100:1: note: in expansion of macro 'SMARTMATRIX_ALLOCATE_BUFFERS'
  699.  
  700. SMARTMATRIX_ALLOCATE_BUFFERS(matrix, kMatrixWidth, kMatrixHeight, kRefreshDepth, kDmaBufferRows, kPanelType, kMatrixOptions);
  701.  
  702. ^
  703.  
  704. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:151:28: error: 'uint32_t matrixUpdateData [3084]' previously declared here
  705.  
  706. static DMAMEM uint32_t matrixUpdateData[buffer_rows * (pwm_depth/COLOR_CHANNELS_PER_PIXEL / sizeof(uint32_t)) * ((((width * height) / CONVERT_PANELTYPE_TO_MATRIXPANELHEIGHT(panel_type)) * DMA_UPDATES_PER_CLOCK + ADDX_UPDATE_BEFORE_LATCH_BYTES))]; \
  707.  
  708. ^
  709.  
  710. C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:79:1: note: in expansion of macro 'SMARTMATRIX_ALLOCATE_BUFFERS'
  711.  
  712. SMARTMATRIX_ALLOCATE_BUFFERS(matrix, kMatrixWidth, kMatrixHeight, kRefreshDepth, kDmaBufferRows, kPanelType, kMatrixOptions);
  713.  
  714. ^
  715.  
  716. In file included from C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartLEDShieldV4.h:5:0,
  717.  
  718. from C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\Hardware.h:23,
  719.  
  720. from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:25:
  721.  
  722. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:152:281: error: redefinition of 'uint8_t matrixUpdateBlocks [500]'
  723.  
  724. static DMAMEM uint8_t matrixUpdateBlocks[(sizeof(matrixUpdateBlock) * buffer_rows * pwm_depth/COLOR_CHANNELS_PER_PIXEL) + (sizeof(addresspair) * CONVERT_PANELTYPE_TO_MATRIXROWSPERFRAME(panel_type)) + (sizeof(timerpair) * pwm_depth/COLOR_CHANNELS_PER_PIXEL) + sizeof(timerpair)]; \
  725.  
  726. ^
  727.  
  728. C:\Users\Mannys\Documents\Arduino\Aurora64x64\AnimatedGIFs.ino:100:1: note: in expansion of macro 'SMARTMATRIX_ALLOCATE_BUFFERS'
  729.  
  730. SMARTMATRIX_ALLOCATE_BUFFERS(matrix, kMatrixWidth, kMatrixHeight, kRefreshDepth, kDmaBufferRows, kPanelType, kMatrixOptions);
  731.  
  732. ^
  733.  
  734. In file included from C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartLEDShieldV4.h:5:0,
  735.  
  736. from C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\Hardware.h:23,
  737.  
  738. from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:25:
  739.  
  740. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:152:27: error: 'uint8_t matrixUpdateBlocks [500]' previously declared here
  741.  
  742. static DMAMEM uint8_t matrixUpdateBlocks[(sizeof(matrixUpdateBlock) * buffer_rows * pwm_depth/COLOR_CHANNELS_PER_PIXEL) + (sizeof(addresspair) * CONVERT_PANELTYPE_TO_MATRIXROWSPERFRAME(panel_type)) + (sizeof(timerpair) * pwm_depth/COLOR_CHANNELS_PER_PIXEL) + sizeof(timerpair)]; \
  743.  
  744. ^
  745.  
  746. C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:79:1: note: in expansion of macro 'SMARTMATRIX_ALLOCATE_BUFFERS'
  747.  
  748. SMARTMATRIX_ALLOCATE_BUFFERS(matrix, kMatrixWidth, kMatrixHeight, kRefreshDepth, kDmaBufferRows, kPanelType, kMatrixOptions);
  749.  
  750. ^
  751.  
  752. In file included from C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartLEDShieldV4.h:5:0,
  753.  
  754. from C:\Users\Mannys\AppData\Local\Temp\arduino_build_132102\sketch\Hardware.h:23,
  755.  
  756. from C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:25:
  757.  
  758. AnimatedGIFs:100: error: redefinition of 'SmartMatrix3<36, 64, 64, 0u, 0u> matrix'
  759. SMARTMATRIX_ALLOCATE_BUFFERS(matrix, kMatrixWidth, kMatrixHeight, kRefreshDepth, kDmaBufferRows, kPanelType, kMatrixOptions);
  760.  
  761. ^
  762.  
  763. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:153:82: note: in definition of macro 'SMARTMATRIX_ALLOCATE_BUFFERS'
  764.  
  765. SmartMatrix3<pwm_depth, width, height, panel_type, option_flags> matrix_name(buffer_rows, matrixUpdateData, matrixUpdateBlocks)
  766.  
  767. ^
  768.  
  769. Aurora64x64:79: error: 'SmartMatrix3<36, 64, 64, 0u, 0u> matrix' previously declared here
  770. SMARTMATRIX_ALLOCATE_BUFFERS(matrix, kMatrixWidth, kMatrixHeight, kRefreshDepth, kDmaBufferRows, kPanelType, kMatrixOptions);
  771.  
  772. ^
  773.  
  774. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:153:70: note: in definition of macro 'SMARTMATRIX_ALLOCATE_BUFFERS'
  775.  
  776. SmartMatrix3<pwm_depth, width, height, panel_type, option_flags> matrix_name(buffer_rows, matrixUpdateData, matrixUpdateBlocks)
  777.  
  778. ^
  779.  
  780. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:167:67: error: redefinition of 'rgb24 backgroundBitmap [8192]'
  781.  
  782. static RGB_TYPE(storage_depth) backgroundBitmap[2*width*height]; \
  783.  
  784. ^
  785.  
  786. C:\Users\Mannys\Documents\Arduino\Aurora64x64\AnimatedGIFs.ino:101:1: note: in expansion of macro 'SMARTMATRIX_ALLOCATE_BACKGROUND_LAYER'
  787.  
  788. SMARTMATRIX_ALLOCATE_BACKGROUND_LAYER(backgroundLayer, kMatrixWidth, kMatrixHeight, COLOR_DEPTH, kBackgroundLayerOptions);
  789.  
  790. ^
  791.  
  792. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:167:36: error: 'rgb24 backgroundBitmap [8192]' previously declared here
  793.  
  794. static RGB_TYPE(storage_depth) backgroundBitmap[2*width*height]; \
  795.  
  796. ^
  797.  
  798. C:\Users\Mannys\Documents\Arduino\Aurora64x64\Aurora64x64.ino:80:1: note: in expansion of macro 'SMARTMATRIX_ALLOCATE_BACKGROUND_LAYER'
  799.  
  800. SMARTMATRIX_ALLOCATE_BACKGROUND_LAYER(backgroundLayer, kMatrixWidth, kMatrixHeight, COLOR_DEPTH, kBackgroundLayerOptions);
  801.  
  802. ^
  803.  
  804. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:168:86: error: redefinition of 'SMLayerBackground<rgb24, 0u> backgroundLayer'
  805.  
  806. static SMLayerBackground<RGB_TYPE(storage_depth), background_options> layer_name(backgroundBitmap, width, height)
  807.  
  808. ^
  809.  
  810. C:\Users\Mannys\Documents\Arduino\Aurora64x64\AnimatedGIFs.ino:101:1: note: in expansion of macro 'SMARTMATRIX_ALLOCATE_BACKGROUND_LAYER'
  811.  
  812. SMARTMATRIX_ALLOCATE_BACKGROUND_LAYER(backgroundLayer, kMatrixWidth, kMatrixHeight, COLOR_DEPTH, kBackgroundLayerOptions);
  813.  
  814. ^
  815.  
  816. Aurora64x64:80: error: 'SMLayerBackground<rgb24, 0u> backgroundLayer' previously declared here
  817. SMARTMATRIX_ALLOCATE_BACKGROUND_LAYER(backgroundLayer, kMatrixWidth, kMatrixHeight, COLOR_DEPTH, kBackgroundLayerOptions);
  818.  
  819. ^
  820.  
  821. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:168:75: note: in definition of macro 'SMARTMATRIX_ALLOCATE_BACKGROUND_LAYER'
  822.  
  823. static SMLayerBackground<RGB_TYPE(storage_depth), background_options> layer_name(backgroundBitmap, width, height)
  824.  
  825. ^
  826.  
  827. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:157:59: error: redefinition of 'uint8_t scrollingLayerBitmap [512]'
  828.  
  829. static uint8_t layer_name##Bitmap[width * (height / 8)]; \
  830.  
  831. ^
  832.  
  833. C:\Users\Mannys\Documents\Arduino\Aurora64x64\AnimatedGIFs.ino:103:1: note: in expansion of macro 'SMARTMATRIX_ALLOCATE_SCROLLING_LAYER'
  834.  
  835. SMARTMATRIX_ALLOCATE_SCROLLING_LAYER(scrollingLayer, kMatrixWidth, kMatrixHeight, COLOR_DEPTH, kScrollingLayerOptions);
  836.  
  837. ^
  838.  
  839. Aurora64x64:81: error: 'uint8_t scrollingLayerBitmap [512]' previously declared here
  840. SMARTMATRIX_ALLOCATE_SCROLLING_LAYER(scrollingLayer, kMatrixWidth, kMatrixHeight, COLOR_DEPTH, kScrollingLayerOptions);
  841.  
  842. ^
  843.  
  844. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:157:20: note: in definition of macro 'SMARTMATRIX_ALLOCATE_SCROLLING_LAYER'
  845.  
  846. static uint8_t layer_name##Bitmap[width * (height / 8)]; \
  847.  
  848. ^
  849.  
  850. AnimatedGIFs:103: error: redefinition of 'SMLayerScrolling<rgb24, 0u> scrollingLayer'
  851. SMARTMATRIX_ALLOCATE_SCROLLING_LAYER(scrollingLayer, kMatrixWidth, kMatrixHeight, COLOR_DEPTH, kScrollingLayerOptions);
  852.  
  853. ^
  854.  
  855. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:158:84: note: in definition of macro 'SMARTMATRIX_ALLOCATE_SCROLLING_LAYER'
  856.  
  857. static SMLayerScrolling<RGB_TYPE(storage_depth), scrolling_options> layer_name(layer_name##Bitmap, width, height)
  858.  
  859. ^
  860.  
  861. Aurora64x64:81: error: 'SMLayerScrolling<rgb24, 0u> scrollingLayer' previously declared here
  862. SMARTMATRIX_ALLOCATE_SCROLLING_LAYER(scrollingLayer, kMatrixWidth, kMatrixHeight, COLOR_DEPTH, kScrollingLayerOptions);
  863.  
  864. ^
  865.  
  866. C:\Users\Mannys\Documents\Arduino\libraries\SmartMatrix\src/SmartMatrix3.h:158:73: note: in definition of macro 'SMARTMATRIX_ALLOCATE_SCROLLING_LAYER'
  867.  
  868. static SMLayerScrolling<RGB_TYPE(storage_depth), scrolling_options> layer_name(layer_name##Bitmap, width, height)
  869.  
  870. ^
  871.  
  872. AnimatedGIFs: In function 'void screenClearCallback()':
  873. AnimatedGIFs:126: error: redefinition of 'void screenClearCallback()'
  874. void screenClearCallback(void) {
  875.  
  876. ^
  877.  
  878. Aurora64x64:269: error: 'void screenClearCallback()' previously defined here
  879. void screenClearCallback(void) {
  880.  
  881. ^
  882.  
  883. AnimatedGIFs: In function 'void updateScreenCallback()':
  884. AnimatedGIFs:130: error: redefinition of 'void updateScreenCallback()'
  885. void updateScreenCallback(void) {
  886.  
  887. ^
  888.  
  889. Aurora64x64:273: error: 'void updateScreenCallback()' previously defined here
  890. void updateScreenCallback(void) {
  891.  
  892. ^
  893.  
  894. AnimatedGIFs: In function 'void drawPixelCallback(int16_t, int16_t, uint8_t, uint8_t, uint8_t)':
  895. AnimatedGIFs:134: error: redefinition of 'void drawPixelCallback(int16_t, int16_t, uint8_t, uint8_t, uint8_t)'
  896. void drawPixelCallback(int16_t x, int16_t y, uint8_t red, uint8_t green, uint8_t blue) {
  897.  
  898. ^
  899.  
  900. Aurora64x64:277: error: 'void drawPixelCallback(int16_t, int16_t, uint8_t, uint8_t, uint8_t)' previously defined here
  901. void drawPixelCallback(int16_t x, int16_t y, uint8_t red, uint8_t green, uint8_t blue) {
  902.  
  903. ^
  904.  
  905. AnimatedGIFs: In function 'void setup()':
  906. AnimatedGIFs:139: error: redefinition of 'void setup()'
  907. void setup() {
  908.  
  909. ^
  910.  
  911. Aurora64x64:290: error: 'void setup()' previously defined here
  912. void setup()
  913.  
  914. ^
  915.  
  916. AnimatedGIFs: In function 'void loop()':
  917. AnimatedGIFs:199: error: redefinition of 'void loop()'
  918. void loop() {
  919.  
  920. ^
  921.  
  922. Aurora64x64:446: error: 'void loop()' previously defined here
  923. void loop()
  924.  
  925. ^
  926.  
  927. Multiple libraries were found for "IRremote.h"
  928. Used: C:\Users\Mannys\Documents\Arduino\libraries\IRremote
  929. Not used: C:\Program Files (x86)\Arduino\libraries\RobotIRremote
  930. Multiple libraries were found for "SD.h"
  931. Used: C:\Program Files (x86)\Arduino\hardware\teensy\avr\libraries\SD
  932. Not used: C:\Program Files (x86)\Arduino\libraries\SD
  933. 'tmElements_t' does not name a type
  934.  
  935. This report would have more information with
  936. "Show verbose output during compilation"
  937. option enabled in File -> Preferences.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement