Skip to content

Instantly share code, notes, and snippets.

Created January 7, 2016 02:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/c4f329d03cfe214a762e to your computer and use it in GitHub Desktop.
Save anonymous/c4f329d03cfe214a762e to your computer and use it in GitHub Desktop.
Aurora build errors
Arduino: 1.6.7 (Windows 10), TD: 1.27, Board: "Teensy 3.2 / 3.1, Serial, 96 MHz optimized (overclock), US English"
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:63:0:
C:\Users\jblang\arduino-1.6.7\libraries\FastLED-3.1.0/FastLED.h:12:2: warning: #warning FastLED version 3.001.000 (Not really a warning, just telling you here.) [-Wcpp]
#warning FastLED version 3.001.000 (Not really a warning, just telling you here.)
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:70:0:
C:\Users\jblang\arduino-1.6.7\hardware\teensy\avr\libraries\DS1307RTC/DS1307RTC.h:19:22: error: 'tmElements_t' has not been declared
static bool read(tmElements_t &tm);
^
C:\Users\jblang\arduino-1.6.7\hardware\teensy\avr\libraries\DS1307RTC/DS1307RTC.h:20:23: error: 'tmElements_t' has not been declared
static bool write(tmElements_t &tm);
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:115:0:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioLogic.h: In function 'void saveAudioScaleSetting()':
AudioLogic.h:135: error: 'saveByteSetting' was not declared in this scope
saveByteSetting(audiosclFilename, audioScale);
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:117:0:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::CircleStream(uint8_t)':
Effects.h:144: error: 'XY' was not declared in this scope
uint16_t xy = XY(x, y);
^
Effects.h:157: error: 'XY' was not declared in this scope
uint16_t xy = XY(x, y);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::Caleidoscope1()':
Effects.h:369: error: 'XY' was not declared in this scope
leds[XY(MATRIX_WIDTH - 1 - x, y)] = leds[XY(x, y)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::Caleidoscope2()':
Effects.h:381: error: 'XY' was not declared in this scope
leds[XY(MATRIX_WIDTH - 1 - x, y)] = leds[XY(y, x)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::Caleidoscope3()':
Effects.h:392: error: 'XY' was not declared in this scope
leds[XY(x, y)] = leds[XY(y, x)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::Caleidoscope4()':
Effects.h:401: error: 'XY' was not declared in this scope
leds[XY(MATRIX_CENTRE_Y - y, MATRIX_CENTRE_X - x)] = leds[XY(x, y)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::Caleidoscope5()':
Effects.h:410: error: 'XY' was not declared in this scope
leds[XY(x, y)] = leds[XY(y, x)];
^
Effects.h:416: error: 'XY' was not declared in this scope
leds[XY(x, y)] = leds[XY(y, x)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::Caleidoscope6()':
Effects.h:423: error: 'XY' was not declared in this scope
leds[XY(7 - x, 7)] = leds[XY(x, 0)];
^
Effects.h:426: error: 'XY' was not declared in this scope
leds[XY(7 - x, 6)] = leds[XY(x, 1)];
^
Effects.h:429: error: 'XY' was not declared in this scope
leds[XY(7 - x, 5)] = leds[XY(x, 2)];
^
Effects.h:432: error: 'XY' was not declared in this scope
leds[XY(7 - x, 4)] = leds[XY(x, 3)];
^
Effects.h:435: error: 'XY' was not declared in this scope
leds[XY(7 - x, 3)] = leds[XY(x, 4)];
^
Effects.h:438: error: 'XY' was not declared in this scope
leds[XY(7 - x, 2)] = leds[XY(x, 5)];
^
Effects.h:441: error: 'XY' was not declared in this scope
leds[XY(7 - x, 1)] = leds[XY(x, 6)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::SpiralStream(int, int, int, byte)':
Effects.h:450: error: 'XY' was not declared in this scope
leds[XY(i, y - d)] += leds[XY(i + 1, y - d)]; // lowest row to the right
^
Effects.h:454: error: 'XY' was not declared in this scope
leds[XY(x + d, i)] += leds[XY(x + d, i + 1)]; // right colum up
^
Effects.h:458: error: 'XY' was not declared in this scope
leds[XY(i, y + d)] += leds[XY(i - 1, y + d)]; // upper row to the left
^
Effects.h:462: error: 'XY' was not declared in this scope
leds[XY(x - d, i)] += leds[XY(x - d, i - 1)]; // left colum down
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::Expand(int, int, int, byte)':
Effects.h:486: error: 'XY' was not declared in this scope
leds[XY(a + centerX, b + centerY)] = leds[XY(nextA + centerX, nextB + centerY)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::StreamRight(byte, int, int, int, int)':
Effects.h:533: error: 'XY' was not declared in this scope
leds[XY(x, y)] += leds[XY(x - 1, y)];
^
Effects.h:538: error: 'XY' was not declared in this scope
leds[XY(0, y)].nscale8(scale);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::StreamLeft(byte, int, int, int, int)':
Effects.h:546: error: 'XY' was not declared in this scope
leds[XY(x, y)] += leds[XY(x + 1, y)];
^
Effects.h:551: error: 'XY' was not declared in this scope
leds[XY(0, y)].nscale8(scale);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::StreamDown(byte)':
Effects.h:559: error: 'XY' was not declared in this scope
leds[XY(x, y)] += leds[XY(x, y - 1)];
^
Effects.h:564: error: 'XY' was not declared in this scope
leds[XY(x, 0)].nscale8(scale);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::StreamUp(byte)':
Effects.h:572: error: 'XY' was not declared in this scope
leds[XY(x, y)] += leds[XY(x, y + 1)];
^
Effects.h:577: error: 'XY' was not declared in this scope
leds[XY(x, MATRIX_HEIGHT - 1)].nscale8(scale);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::StreamUpAndLeft(byte)':
Effects.h:585: error: 'XY' was not declared in this scope
leds[XY(x, y)] += leds[XY(x + 1, y + 1)];
^
Effects.h:590: error: 'XY' was not declared in this scope
leds[XY(x, MATRIX_HEIGHT - 1)].nscale8(scale);
^
Effects.h:592: error: 'XY' was not declared in this scope
leds[XY(MATRIX_WIDTH - 1, y)].nscale8(scale);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::StreamUpAndRight(byte)':
Effects.h:600: error: 'XY' was not declared in this scope
leds[XY(x + 1, y)] += leds[XY(x, y + 1)];
^
Effects.h:606: error: 'XY' was not declared in this scope
leds[XY(x, MATRIX_HEIGHT - 1)].nscale8(scale);
^
Effects.h:610: error: 'XY' was not declared in this scope
leds[XY(MATRIX_WIDTH - 1, y)].nscale8(scale);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::MoveDown()':
Effects.h:617: error: 'XY' was not declared in this scope
leds[XY(x, y)] = leds[XY(x, y - 1)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::VerticalMoveFrom(int, int)':
Effects.h:626: error: 'XY' was not declared in this scope
leds[XY(x, y)] = leds[XY(x, y - 1)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::Copy(byte, byte, byte, byte, byte, byte)':
Effects.h:636: error: 'XY' was not declared in this scope
leds[XY(x + x2 - x0, y + y2 - y0)] = leds[XY(x, y)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::RotateTriangle()':
Effects.h:645: error: 'XY' was not declared in this scope
leds[XY(x, 7 - y)] = leds[XY(7 - x, y)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::MirrorTriangle()':
Effects.h:654: error: 'XY' was not declared in this scope
leds[XY(7 - y, x)] = leds[XY(7 - x, y)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::BresenhamLine(int, int, int, int, CRGB)':
Effects.h:680: error: 'XY' was not declared in this scope
leds[XY(x0, y0)] += color;
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::Pixel(int, int, uint8_t)':
Effects.h:696: error: 'XY' was not declared in this scope
leds[XY(x, y)] = ColorFromCurrentPalette(colorIndex);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::MoveX(byte)':
Effects.h:741: error: 'XY' was not declared in this scope
leds2[XY(x, y)] = leds[XY(x + delta, y)];
^
Effects.h:744: error: 'XY' was not declared in this scope
leds2[XY(x, y)] = leds[XY(x + delta - MATRIX_WIDTH, y)];
^
Effects.h:751: error: 'XY' was not declared in this scope
leds[XY(x, y)] = leds2[XY(x, y)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::MoveY(byte)':
Effects.h:759: error: 'XY' was not declared in this scope
leds2[XY(x, y)] = leds[XY(x, y + delta)];
^
Effects.h:762: error: 'XY' was not declared in this scope
leds2[XY(x, y)] = leds[XY(x, y + delta - MATRIX_HEIGHT)];
^
Effects.h:769: error: 'XY' was not declared in this scope
leds[XY(x, y)] = leds2[XY(x, y)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::MoveFractionalNoiseX(byte)':
Effects.h:781: error: 'XY' was not declared in this scope
leds2[XY(x, y)] = leds[XY(x + delta, y)];
^
Effects.h:784: error: 'XY' was not declared in this scope
leds2[XY(x, y)] = leds[XY(x + delta - MATRIX_WIDTH, y)];
^
Effects.h:798: error: 'XY' was not declared in this scope
PixelA = leds2[XY(x, y)];
^
Effects.h:807: error: 'XY' was not declared in this scope
PixelA = leds2[XY(0, y)];
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Effects.h: In member function 'void Effects::MoveFractionalNoiseY(byte)':
Effects.h:824: error: 'XY' was not declared in this scope
leds2[XY(x, y)] = leds[XY(x, y + delta)];
^
Effects.h:827: error: 'XY' was not declared in this scope
leds2[XY(x, y)] = leds[XY(x, y + delta - MATRIX_WIDTH)];
^
Effects.h:841: error: 'XY' was not declared in this scope
PixelA = leds2[XY(x, y)];
^
Effects.h:850: error: 'XY' was not declared in this scope
PixelA = leds2[XY(x, 0)];
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:120:0:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\IrCodes.h: In function 'void createFile(aJsonObject*)':
IrCodes.h:484: error: 'reloadAnimations' was not declared in this scope
reloadAnimations();
^
IrCodes.h:487: error: 'setAnimation' was not declared in this scope
setAnimation(name);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\IrCodes.h: In function 'InputCommand readSerialCommand()':
IrCodes.h:519: error: 'boundBrightness' was not declared in this scope
boundBrightness();
^
IrCodes.h:521: error: 'saveBrightnessSetting' was not declared in this scope
saveBrightnessSetting();
^
IrCodes.h:529: error: 'boundBackgroundBrightness' was not declared in this scope
boundBackgroundBrightness();
^
IrCodes.h:531: error: 'saveBackgroundBrightnessSetting' was not declared in this scope
saveBackgroundBrightnessSetting();
^
IrCodes.h:547: error: 'setAudioPattern' was not declared in this scope
if (setAudioPattern(item->valuestring))
^
IrCodes.h:555: error: 'setAudioPattern' was not declared in this scope
if (setAudioPattern(item->valueint))
^
IrCodes.h:566: error: 'setPattern' was not declared in this scope
if (setPattern(item->valuestring))
^
IrCodes.h:574: error: 'setPattern' was not declared in this scope
if (setPattern(item->valueint))
^
IrCodes.h:585: error: 'setAnimation' was not declared in this scope
if (setAnimation(item->valuestring))
^
IrCodes.h:593: error: 'setAnimation' was not declared in this scope
if (setAnimation(item->valueint))
^
IrCodes.h:602: error: 'setTemperature' was not declared in this scope
setTemperature(item->valueint);
^
IrCodes.h:609: error: 'setWeatherType' was not declared in this scope
setWeatherType(item->valueint);
^
IrCodes.h:627: error: 'listAnimations' was not declared in this scope
listAnimations();
^
IrCodes.h:631: error: 'listAudioPatterns' was not declared in this scope
listAudioPatterns();
^
IrCodes.h:635: error: 'listPatterns' was not declared in this scope
listPatterns();
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: At global scope:
Aurora:131: error: 'tmElements_t' does not name a type
tmElements_t time;
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:134:0:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockDigitalShort.h: In member function 'unsigned int ClockDigitalShort::drawFrame(int)':
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*)}'
uint8_t hour = time.Hour;
^
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*)}'
sprintf(timeBuffer, "%d:%02d", hour, time.Minute);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockDigitalShort.h: In member function 'void ClockDigitalShort::loadSettings()':
ClockDigitalShort.h:98: error: 'loadByteSetting' was not declared in this scope
y = loadByteSetting(clockYFilename, 11);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockDigitalShort.h: In member function 'void ClockDigitalShort::saveClockYSetting()':
ClockDigitalShort.h:108: error: 'saveIntSetting' was not declared in this scope
saveIntSetting(clockYFilename, y);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockDigitalShort.h: In member function 'void ClockDigitalShort::saveTwentyFourHourSetting()':
ClockDigitalShort.h:112: error: 'saveIntSetting' was not declared in this scope
saveIntSetting(clock24hFilename, twentyFourHour);
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:137:0:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockText.h: In member function 'unsigned int ClockText::drawFrame(int)':
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*)}'
uint8_t hour = time.Hour;
^
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*)}'
uint8_t minute = time.Minute;
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:140:0:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockCountdown.h: At global scope:
ClockCountdown.h:35: error: 'tmElements_t' does not name a type
tmElements_t target;
^
ClockCountdown.h:36: error: 'tmElements_t' does not name a type
tmElements_t remaining;
^
ClockCountdown.h:43: error: 'tmElements_t' has not been declared
void printTime(tmElements_t t) {
^
ClockCountdown.h:95: error: 'tmElements_t' does not name a type
tmElements_t loadDateTimeSetting(const char* name) {
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockCountdown.h: In member function 'void ClockCountdown::printTime(int)':
ClockCountdown.h:44: error: request for member 'Year' in 't', which is of non-class type 'int'
Serial.print(t.Year);
^
ClockCountdown.h:46: error: request for member 'Month' in 't', which is of non-class type 'int'
Serial.print(t.Month);
^
ClockCountdown.h:48: error: request for member 'Day' in 't', which is of non-class type 'int'
Serial.print(t.Day);
^
ClockCountdown.h:52: error: request for member 'Hour' in 't', which is of non-class type 'int'
Serial.print(t.Hour);
^
ClockCountdown.h:54: error: request for member 'Minute' in 't', which is of non-class type 'int'
Serial.print(t.Minute);
^
ClockCountdown.h:56: error: request for member 'Second' in 't', which is of non-class type 'int'
Serial.println(t.Second);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockCountdown.h: In member function 'virtual unsigned int ClockCountdown::drawFrame()':
ClockCountdown.h:61: error: 'makeTime' was not declared in this scope
time_t currentTime = makeTime(time);
^
ClockCountdown.h:71: error: 'SECS_PER_HOUR' was not declared in this scope
uint8_t hoursRemaining = timeRemaining / SECS_PER_HOUR;
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockCountdown.h: In member function 'void ClockCountdown::loadSettings()':
ClockCountdown.h:138: error: 'target' was not declared in this scope
target = loadDateTimeSetting("countdwn.txt");
^
ClockCountdown.h:138: error: 'loadDateTimeSetting' was not declared in this scope
target = loadDateTimeSetting("countdwn.txt");
^
ClockCountdown.h:139: error: 'makeTime' was not declared in this scope
targetTime = makeTime(target);
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:143:0:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockPong.h: In member function 'virtual void ClockPong::start()':
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*)}'
mins = time.Minute;
^
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*)}'
hours = time.Hour;
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockPong.h: In member function 'virtual unsigned int ClockPong::drawFrame()':
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*)}'
if (time.Second % 2 == 0) {
^
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*)}'
if (time.Second == 59 && time.Minute < 59) {
^
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*)}'
if (time.Second == 59 && time.Minute < 59) {
^
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*)}'
if (time.Second == 59 && time.Minute == 59) {
^
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*)}'
if (time.Second == 59 && time.Minute == 59) {
^
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*)}'
mins = time.Minute;
^
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*)}'
hours = time.Hour;
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:146:0:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockDisplay.h: In member function 'bool ClockDisplay::readTimeHardware()':
ClockDisplay.h:90: error: no matching function for call to 'DS1307RTC::read(time_t (&)(time_t*))'
if (RTC.read(time)) {
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockDisplay.h:90:24: note: candidate is:
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:70:0:
C:\Users\jblang\arduino-1.6.7\hardware\teensy\avr\libraries\DS1307RTC/DS1307RTC.h:19:17: note: static bool DS1307RTC::read(int&)
static bool read(tmElements_t &tm);
^
C:\Users\jblang\arduino-1.6.7\hardware\teensy\avr\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&'
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:146:0:
ClockDisplay.h:97: error: 'getTeensy3Time' was not declared in this scope
setSyncProvider(getTeensy3Time);
^
ClockDisplay.h:97: error: 'setSyncProvider' was not declared in this scope
setSyncProvider(getTeensy3Time);
^
ClockDisplay.h:101: error: 'now' was not declared in this scope
breakTime(now(), time);
^
ClockDisplay.h:101: error: 'breakTime' was not declared in this scope
breakTime(now(), time);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockDisplay.h: In member function 'void ClockDisplay::loadSettings()':
ClockDisplay.h:149: error: 'makeTime' was not declared in this scope
time_t currentTime = makeTime(time);
^
ClockDisplay.h:156: error: 'loadByteSetting' was not declared in this scope
color.red = loadByteSetting(clockR, 255);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\ClockDisplay.h: In member function 'void ClockDisplay::saveColor()':
ClockDisplay.h:178: error: 'saveIntSetting' was not declared in this scope
saveIntSetting(clockR, color.red);
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:31:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternNoiseSmearing.h: In member function 'virtual unsigned int PatternMultipleStream::drawFrame()':
PatternNoiseSmearing.h:57: error: 'XY' was not declared in this scope
effects.leds[XY(x1, x2)] = effects.ColorFromCurrentPalette(patternNoiseSmearingHue);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternNoiseSmearing.h: In member function 'virtual unsigned int PatternMultipleStream2::drawFrame()':
PatternNoiseSmearing.h:90: error: 'XY' was not declared in this scope
effects.leds[XY(xx, yy)] += effects.ColorFromCurrentPalette(patternNoiseSmearingHue);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternNoiseSmearing.h: In member function 'virtual unsigned int PatternMultipleStream3::drawFrame()':
PatternNoiseSmearing.h:128: error: 'XY' was not declared in this scope
effects.leds[XY(i, 15)] += effects.ColorFromCurrentPalette(i * 8);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternNoiseSmearing.h: In member function 'virtual unsigned int PatternMultipleStream4::drawFrame()':
PatternNoiseSmearing.h:160: error: 'XY' was not declared in this scope
effects.leds[XY(15, 15)] += effects.ColorFromCurrentPalette(patternNoiseSmearingHue);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternNoiseSmearing.h: In member function 'virtual unsigned int PatternMultipleStream5::drawFrame()':
PatternNoiseSmearing.h:195: error: 'XY' was not declared in this scope
effects.leds[XY(i, 31)] += effects.ColorFromCurrentPalette(i * 8);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternNoiseSmearing.h: In member function 'virtual unsigned int PatternMultipleStream8::drawFrame()':
PatternNoiseSmearing.h:229: error: 'XY' was not declared in this scope
effects.leds[XY(x, y)] += effects.ColorFromCurrentPalette((x * y) / 4);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternNoiseSmearing.h: In member function 'virtual unsigned int PatternPaletteSmear::drawFrame()':
PatternNoiseSmearing.h:263: error: 'XY' was not declared in this scope
effects.leds[XY(x, y)] += effects.ColorFromCurrentPalette(x * 8, y * 8 + 7);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternNoiseSmearing.h: In member function 'virtual unsigned int PatternRainbowFlag::drawFrame()':
PatternNoiseSmearing.h:307: error: 'XY' was not declared in this scope
effects.leds[XY(x, y)] += rainbow[c];
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:32:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternSpiro.h: In member function 'virtual unsigned int PatternSpiro::drawFrame()':
PatternSpiro.h:62: error: 'XY' was not declared in this scope
effects.leds[XY(x2, y2)] += color;
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:33:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternRadar.h: In member function 'virtual unsigned int PatternRadar::drawFrame()':
PatternRadar.h:43: error: 'XY' was not declared in this scope
uint16_t xy = XY(x, y);
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:34:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternAnalogClock.h: In member function 'virtual unsigned int PatternAnalogClock::drawFrame()':
PatternAnalogClock.h:45: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
uint8_t hour = time.Hour;
^
PatternAnalogClock.h:53: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
radians = (90.0F - ((hour * 30.0F) + ((time.Minute * 29.0F) / 60.0F))) * M_PI / 180.0F;
^
PatternAnalogClock.h:56: error: 'XY' was not declared in this scope
effects.leds[XY(x, y)] += {255, 0, 0};
^
PatternAnalogClock.h:59: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
radians = (90.0F - (time.Minute * 6.0F)) * M_PI / 180.0;
^
PatternAnalogClock.h:65: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
radians = (90.0F - ((float)time.Second * 6.0F)) * M_PI / 180.0F;
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:35:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternSwirl.h: In member function 'virtual unsigned int PatternSwirl::drawFrame()':
PatternSwirl.h:63: error: 'XY' was not declared in this scope
effects.leds[XY(i, j)] += effects.ColorFromCurrentPalette(ms / 11);
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:40:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternMunch.h: In member function 'virtual unsigned int PatternMunch::drawFrame()':
PatternMunch.h:44: error: 'XY' was not declared in this scope
effects.leds[XY(x, y)] = (x ^ y ^ flip) < count ? effects.ColorFromCurrentPalette(((x ^ y) << 3) + generation) : CRGB::Black;
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:41:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternElectricMandala.h: In member function 'void PatternElectricMandala::ShowNoiseLayer(byte, byte, byte)':
PatternElectricMandala.h:108: error: 'XY' was not declared in this scope
effects.leds[XY(i, j)] = pixel;
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:43:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternSimplexNoise.h: In member function 'void PatternSimplexNoise::ShowNoiseLayer(byte, byte, byte)':
PatternSimplexNoise.h:71: error: 'XY' was not declared in this scope
effects.leds[XY(i, j)] = effects.ColorFromCurrentPalette(colorrepeat * (pixel + colorshift), pixel);
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:50:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternSnake.h: In member function 'void PatternSnake::Snake::draw(CRGB*)':
PatternSnake.h:99: error: 'XY' was not declared in this scope
effects.leds[XY(pixels[i].x, pixels[i].y)] = colors[i] %= (255 - i * (255 / SNAKE_LENGTH));
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:53:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternFire.h: In member function 'virtual unsigned int PatternFire::drawFrame()':
PatternFire.h:64: error: 'XY' was not declared in this scope
int xy = XY(x, y);
^
PatternFire.h:70: error: 'XY' was not declared in this scope
heat[XY(x, y)] = (heat[XY(x, y + 1)] + heat[XY(x, y + 2)] + heat[XY(x, y + 2)]) / 3;
^
PatternFire.h:77: error: 'XY' was not declared in this scope
int xy = XY(x, MATRIX_HEIGHT - 1);
^
PatternFire.h:83: error: 'XY' was not declared in this scope
int xy = XY(x, y);
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:54:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternLife.h: In member function 'virtual unsigned int PatternLife::drawFrame()':
PatternLife.h:88: error: 'XY' was not declared in this scope
effects.leds[XY(i, j)] = effects.ColorFromCurrentPalette(world[i][j].hue * 4, world[i][j].brightness);
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Patterns.h:58:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:149:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\PatternSpark.h: In member function 'virtual unsigned int PatternSpark::drawFrame()':
PatternSpark.h:60: error: 'XY' was not declared in this scope
int xy = XY(x, y);
^
PatternSpark.h:66: error: 'XY' was not declared in this scope
heat[XY(x, y)] = (heat[XY(x, y + 1)] + heat[XY(x, y + 2)] + heat[XY(x, y + 2)]) / 3;
^
PatternSpark.h:73: error: 'XY' was not declared in this scope
int xy = XY(xt, MATRIX_HEIGHT - 1);
^
PatternSpark.h:79: error: 'XY' was not declared in this scope
int xy = XY(x, y);
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:152:0:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioPatterns.h: In member function 'void AudioPatterns::miniAnalyzer()':
AudioPatterns.h:151: error: 'XY' was not declared in this scope
effects.leds[XY((MATRIX_WIDTH - bandCount) + i, (MATRIX_HEIGHT - 1) - j)].nscale8(127);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioPatterns.h: In member function 'void AudioPatterns::fallingSpectrogramPaletteSpectrum()':
AudioPatterns.h:365: error: 'XY' was not declared in this scope
effects.leds[XY(x, 0)] = color;
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioPatterns.h: In member function 'void AudioPatterns::fallingSpectrogram()':
AudioPatterns.h:384: error: 'XY' was not declared in this scope
effects.leds[XY(x, 0)] = color;
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioPatterns.h: In member function 'void AudioPatterns::fallingWavySpectrogram()':
AudioPatterns.h:406: error: 'XY' was not declared in this scope
effects.leds[XY(x, 0)] = color;
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioPatterns.h: In member function 'void AudioPatterns::drawRandomEmitters()':
AudioPatterns.h:480: error: 'XY' was not declared in this scope
effects.leds[XY(random(0, MATRIX_WIDTH - 1), random(0, MATRIX_HEIGHT - 1))] = effects.ColorFromCurrentPalette(colorIndex, level / 4);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioPatterns.h: In member function 'void AudioPatterns::fire()':
AudioPatterns.h:871: error: 'XY' was not declared in this scope
uint16_t xy = XY(x, y);
^
AudioPatterns.h:877: error: 'XY' was not declared in this scope
heat[XY(x, y)] = (heat[XY(x, y + 1)] + heat[XY(x, y + 2)] + heat[XY(x, y + 2)]) / 3;
^
AudioPatterns.h:884: error: 'XY' was not declared in this scope
int xy = XY(x, MATRIX_HEIGHT - 1);
^
AudioPatterns.h:890: error: 'XY' was not declared in this scope
int xy = XY(x, y);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioPatterns.h: In member function 'void AudioPatterns::paletteSmear()':
AudioPatterns.h:1048: error: 'XY' was not declared in this scope
effects.leds[XY(x, y)] += effects.ColorFromCurrentPalette(level / 5, y * (256 / MATRIX_HEIGHT));
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioPatterns.h: In member function 'void AudioPatterns::gauge()':
AudioPatterns.h:1070: error: 'XY' was not declared in this scope
effects.leds[XY(x, y)] += effects.ColorFromCurrentPalette(level / 5, 64);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioPatterns.h: In member function 'void AudioPatterns::gauge2()':
AudioPatterns.h:1093: error: 'XY' was not declared in this scope
effects.leds[XY(x, y)] += effects.ColorFromCurrentPalette(offset * 18, level / 4);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioPatterns.h: In member function 'void AudioPatterns::radialTest()':
AudioPatterns.h:1111: error: 'XY' was not declared in this scope
uint16_t xy = XY(x, y);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\AudioPatterns.h: In member function 'void AudioPatterns::radar()':
AudioPatterns.h:1136: error: 'XY' was not declared in this scope
uint16_t xy = XY(x, y);
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:173:0:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Menu.h: In member function 'void Menu::run(MenuItem**, int)':
Menu.h:114: error: 'hasExternalPower' was not declared in this scope
if (!hasExternalPower()) {
^
Menu.h:115: error: 'restartAndJumpToApp' was not declared in this scope
restartAndJumpToApp();
^
Menu.h:118: error: 'updateStatusLed' was not declared in this scope
updateStatusLed();
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:173:0:
Menu.h:218: error: 'cycleBrightness' was not declared in this scope
if (isHolding || (showingBrightnessIndicator && cycleBrightness() == 0)) {
^
Menu.h:220: error: 'powerOff' was not declared in this scope
powerOff();
^
Menu.h:233: error: 'powerOff' was not declared in this scope
powerOff();
^
Menu.h:239: error: 'adjustBrightness' was not declared in this scope
adjustBrightness(1, false);
^
Menu.h:240: error: 'saveBrightnessSetting' was not declared in this scope
saveBrightnessSetting();
^
Menu.h:246: error: 'adjustBrightness' was not declared in this scope
adjustBrightness(-1, false);
^
Menu.h:247: error: 'saveBrightnessSetting' was not declared in this scope
saveBrightnessSetting();
^
Menu.h:346: error: 'toggleSettingsMenuVisibility' was not declared in this scope
toggleSettingsMenuVisibility();
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Menu.h: In member function 'void Menu::updateForeground(MenuItem**, int)':
Menu.h:463: error: 'getBrightnessLevel' was not declared in this scope
int level = ((float) getBrightnessLevel() / (float) (brightnessCount - 1)) * 100;
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h:26:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsBrightness.h: In member function 'virtual void SettingsBrightness::run()':
SettingsBrightness.h:67: error: 'getBrightnessLevel' was not declared in this scope
int level = ((float) getBrightnessLevel() / (float) (brightnessCount - 1)) * 100;
^
SettingsBrightness.h:83: error: 'adjustBrightness' was not declared in this scope
adjustBrightness(1, true);
^
SettingsBrightness.h:95: error: 'saveBrightnessSetting' was not declared in this scope
saveBrightnessSetting();
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h:27:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsBackgroundBrightness.h: In member function 'virtual void SettingsBackgroundBrightness::run()':
SettingsBackgroundBrightness.h:67: error: 'getBackgroundBrightnessLevel' was not declared in this scope
int level = ((float) getBackgroundBrightnessLevel() / (float) (brightnessCount - 1)) * 100;
^
SettingsBackgroundBrightness.h:84: error: 'adjustBackgroundBrightness' was not declared in this scope
adjustBackgroundBrightness(1);
^
SettingsBackgroundBrightness.h:95: error: 'saveBackgroundBrightnessSetting' was not declared in this scope
saveBackgroundBrightnessSetting();
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h:29:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsSetTime.h: In member function 'void SettingsSetTime::setTimeHardware()':
SettingsSetTime.h:35: error: no matching function for call to 'DS1307RTC::write(time_t (&)(time_t*))'
RTC.write(time);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsSetTime.h:35:23: note: candidate is:
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:70:0:
C:\Users\jblang\arduino-1.6.7\hardware\teensy\avr\libraries\DS1307RTC/DS1307RTC.h:20:17: note: static bool DS1307RTC::write(int&)
static bool write(tmElements_t &tm);
^
C:\Users\jblang\arduino-1.6.7\hardware\teensy\avr\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&'
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h:29:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:
SettingsSetTime.h:37: error: 'makeTime' was not declared in this scope
time_t t = makeTime(time);
^
SettingsSetTime.h:39: error: 'setTime' was not declared in this scope
setTime(t);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsSetTime.h: In member function 'void SettingsSetTime::draw()':
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*)}'
sprintf(timeBuffer, "%02d-%02d-%02d", time.Hour, time.Minute, time.Second);
^
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*)}'
sprintf(timeBuffer, "%02d-%02d-%02d", time.Hour, time.Minute, time.Second);
^
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*)}'
sprintf(timeBuffer, "%02d-%02d-%02d", time.Hour, time.Minute, time.Second);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsSetTime.h: In member function 'void SettingsSetTime::adjust(int)':
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*)}'
if (d > 0 && time.Hour == 23)
^
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*)}'
time.Hour = 0;
^
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*)}'
else if (d < 1 && time.Hour == 0)
^
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*)}'
time.Hour = 23;
^
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*)}'
time.Hour += d;
^
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*)}'
if (d > 0 && time.Minute == 59)
^
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*)}'
time.Minute = 0;
^
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*)}'
else if (d < 1 && time.Minute == 0)
^
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*)}'
time.Minute = 59;
^
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*)}'
time.Minute += d;
^
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*)}'
if (d > 0 && time.Second == 59)
^
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*)}'
time.Second = 0;
^
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*)}'
else if (d < 1 && time.Second == 0)
^
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*)}'
time.Second = 59;
^
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*)}'
time.Second += d;
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h:30:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsSetDate.h: In member function 'void SettingsSetDate::setTimeHardware()':
SettingsSetDate.h:48: error: no matching function for call to 'DS1307RTC::write(time_t (&)(time_t*))'
RTC.write(time);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsSetDate.h:48:23: note: candidate is:
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:70:0:
C:\Users\jblang\arduino-1.6.7\hardware\teensy\avr\libraries\DS1307RTC/DS1307RTC.h:20:17: note: static bool DS1307RTC::write(int&)
static bool write(tmElements_t &tm);
^
C:\Users\jblang\arduino-1.6.7\hardware\teensy\avr\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&'
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h:30:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:
SettingsSetDate.h:50: error: 'makeTime' was not declared in this scope
time_t t = makeTime(time);
^
SettingsSetDate.h:52: error: 'setTime' was not declared in this scope
setTime(t);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsSetDate.h: In member function 'void SettingsSetDate::draw()':
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*)}'
uint16_t year = time.Year + 1970;
^
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*)}'
sprintf(timeBuffer, "%02d-%02d-%02d", year, time.Month, time.Day);
^
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*)}'
sprintf(timeBuffer, "%02d-%02d-%02d", year, time.Month, time.Day);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsSetDate.h: In member function 'void SettingsSetDate::adjust(int)':
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*)}'
if (d > 0 || time.Year > 0)
^
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*)}'
time.Year += d;
^
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*)}'
if (d > 0 && time.Month == 12)
^
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*)}'
time.Month = 1;
^
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*)}'
else if (d < 1 && time.Month == 1)
^
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*)}'
time.Month = 12;
^
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*)}'
time.Month += d;
^
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*)}'
if (d > 0 && time.Day == 31)
^
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*)}'
time.Day = 1;
^
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*)}'
else if (d < 1 && time.Day == 1)
^
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*)}'
time.Day = 31;
^
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*)}'
time.Day += d;
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h:33:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsMenuColor.h: In member function 'void SettingsMenuColor::save(CRGB)':
SettingsMenuColor.h:184: error: 'saveMenuColor' was not declared in this scope
saveMenuColor();
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h:34:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsMoveMenu.h: In member function 'void SettingsMoveMenu::saveMenuY()':
SettingsMoveMenu.h:88: error: 'saveByteSetting' was not declared in this scope
saveByteSetting(menuYFilename, menuY);
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h:35:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsAutoplayDuration.h: In member function 'virtual void SettingsAutoplayDuration::run()':
SettingsAutoplayDuration.h:61: error: 'saveAutoPlayDurationSeconds' was not declared in this scope
saveAutoPlayDurationSeconds();
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h:36:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsAudioCalibration.h: In member function 'void SettingsAudioCalibration::save()':
SettingsAudioCalibration.h:195: error: 'saveIntSetting' was not declared in this scope
saveIntSetting(text, correction[i]);
^
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsAudioCalibration.h: In member function 'void SettingsAudioCalibration::load()':
SettingsAudioCalibration.h:204: error: 'loadIntSetting' was not declared in this scope
correction[i] = loadIntSetting(text, 4, 0);
^
In file included from C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h:37:0,
from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\SettingsUpdateFiles.h: In member function 'virtual void SettingsUpdateFiles::run()':
SettingsUpdateFiles.h:29: error: 'restartAndJumpToApp' was not declared in this scope
restartAndJumpToApp();
^
In file included from C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino:181:0:
C:\Users\jblang\AppData\Local\Temp\build5f65a35292af3266d641135ec23b93ea.tmp\sketch\Settings.h: In member function 'void Settings::load()':
Settings.h:135: error: 'loadByteSetting' was not declared in this scope
menuY = loadByteSetting(menuYFilename, 11);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void setup()':
Aurora:239: error: 'readProductID' was not declared in this scope
readProductID();
^
Aurora:302: error: 'dateTime' was not declared in this scope
SdFile::dateTimeCallback(dateTime);
^
Aurora:308: error: 'loadRemotesSetting' was not declared in this scope
loadRemotesSetting();
^
Aurora:309: error: 'loadRotationSetting' was not declared in this scope
loadRotationSetting();
^
Aurora:310: error: 'loadByteSetting' was not declared in this scope
enableAudioPatterns = loadByteSetting("enaudpat.txt", 1) > 0;
^
Aurora:318: error: 'loadOverlaySettings' was not declared in this scope
loadOverlaySettings();
^
Aurora:320: error: 'loadDemoModeSetting' was not declared in this scope
loadDemoModeSetting();
^
Aurora:323: error: 'loadSettings' was not declared in this scope
loadSettings();
^
Aurora:326: error: 'saveSettings' was not declared in this scope
saveSettings();
^
Aurora:329: error: 'applyDemoMode' was not declared in this scope
applyDemoMode();
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void loadOverlaySettings()':
Aurora:349: error: 'loadByteSetting' was not declared in this scope
byte overlayIndex = loadByteSetting("ovrlyidx.txt", 255);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void powerOff()':
Aurora:473: error: 'updateStatusLed' was not declared in this scope
updateStatusLed();
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void loadDemoModeSetting()':
Aurora:493: error: 'loadByteSetting' was not declared in this scope
demoMode = loadByteSetting(demoModeFilename, 0);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void loadRemotesSetting()':
Aurora:509: error: 'loadByteSetting' was not declared in this scope
byte remotes = loadByteSetting("remotes.txt", 7);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void loadRotationSetting()':
Aurora:539: error: 'loadByteSetting' was not declared in this scope
byte rotationIndex = loadByteSetting("rotation.txt", 0);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void loadSettings()':
Aurora:564: error: 'loadByteSetting' was not declared in this scope
brightness = loadByteSetting(brghtnssFilename, 255);
^
Aurora:565: error: 'boundBrightness' was not declared in this scope
boundBrightness();
^
Aurora:569: error: 'boundBackgroundBrightness' was not declared in this scope
boundBackgroundBrightness();
^
Aurora:579: error: 'loadIntSetting' was not declared in this scope
autoPlayDurationSeconds = loadIntSetting(autoplydFilename, 3, 10);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void saveSettings()':
Aurora:586: error: 'saveBrightnessSetting' was not declared in this scope
saveBrightnessSetting();
^
Aurora:587: error: 'saveBackgroundBrightnessSetting' was not declared in this scope
saveBackgroundBrightnessSetting();
^
Aurora:588: error: 'saveMenuColor' was not declared in this scope
saveMenuColor();
^
Aurora:589: error: 'saveAutoPlayDurationSeconds' was not declared in this scope
saveAutoPlayDurationSeconds();
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void adjustBrightness(int, boolean)':
Aurora:625: error: 'boundBrightness' was not declared in this scope
boundBrightness();
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'uint8_t cycleBrightness()':
Aurora:632: error: 'saveBrightnessSetting' was not declared in this scope
saveBrightnessSetting();
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void adjustBackgroundBrightness(int)':
Aurora:656: error: 'boundBackgroundBrightness' was not declared in this scope
boundBackgroundBrightness();
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void adjustDemoMode(int)':
Aurora:689: error: 'applyDemoMode' was not declared in this scope
applyDemoMode();
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void saveBrightnessSetting()':
Aurora:733: error: 'saveByteSetting' was not declared in this scope
saveByteSetting(brghtnssFilename, brightness);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void saveBackgroundBrightnessSetting()':
Aurora:737: error: 'saveByteSetting' was not declared in this scope
saveByteSetting(bckbrghtFilename, backgroundBrightness);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void saveMenuColor()':
Aurora:741: error: 'saveMenuR' was not declared in this scope
saveMenuR();
^
Aurora:742: error: 'saveMenuG' was not declared in this scope
saveMenuG();
^
Aurora:743: error: 'saveMenuB' was not declared in this scope
saveMenuB();
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void saveMenuR()':
Aurora:747: error: 'saveByteSetting' was not declared in this scope
saveByteSetting(menuRFilename, menuColor.red);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void saveMenuG()':
Aurora:751: error: 'saveByteSetting' was not declared in this scope
saveByteSetting(menuGFilename, menuColor.green);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void saveMenuB()':
Aurora:755: error: 'saveByteSetting' was not declared in this scope
saveByteSetting(menuBFilename, menuColor.blue);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void saveAutoPlayDurationSeconds()':
Aurora:759: error: 'saveIntSetting' was not declared in this scope
saveIntSetting(autoplydFilename, autoPlayDurationSeconds);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void saveDemoMode()':
Aurora:763: error: 'saveByteSetting' was not declared in this scope
saveByteSetting(demoModeFilename, demoMode);
^
C:\Users\jblang\Documents\Arduino\Aurora\Aurora.ino: In function 'void dateTime(uint16_t*, uint16_t*)':
Aurora:922: error: request for member 'Year' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
*date = FAT_DATE(tmYearToCalendar(time.Year), time.Month, time.Day);
^
Aurora:922: error: 'tmYearToCalendar' was not declared in this scope
*date = FAT_DATE(tmYearToCalendar(time.Year), time.Month, time.Day);
^
Aurora:922: error: request for member 'Month' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
*date = FAT_DATE(tmYearToCalendar(time.Year), time.Month, time.Day);
^
Aurora:922: error: request for member 'Day' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
*date = FAT_DATE(tmYearToCalendar(time.Year), time.Month, time.Day);
^
Aurora:925: error: request for member 'Hour' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
*time2 = FAT_TIME(time.Hour, time.Minute, time.Second);
^
Aurora:925: error: request for member 'Minute' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
*time2 = FAT_TIME(time.Hour, time.Minute, time.Second);
^
Aurora:925: error: request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
*time2 = FAT_TIME(time.Hour, time.Minute, time.Second);
^
exit status 1
request for member 'Second' in 'time', which is of non-class type 'time_t(time_t*) {aka long int(long int*)}'
This report would have more information with
"Show verbose output during compilation"
enabled in File > Preferences.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment