Error compiling for board Teensy 3.6. Previously compiled program won't compile.

Status
Not open for further replies.
I've been running a program on a Teensy 3.6 for a few months without issue that sends RTC Date/Time, Temperature/Humidity, and events like Birthdays/Holidays to a Dot Matrix LED Display that sits on my desk. The display was an advertisement board scavenged form the top of an old Public Internet Access Terminal.

Today, I loaded an older program to review it's function about sending temperature/humidity in a string to the display. The program loaded without issue then I tried to reload the original program and now I'm getting a "Error compiling for board Teensy 3.6." message.

I'm running:
Macbook Pro 10.13.6
Arduino 1.8.2
Teensy Loader 1.36
Processing 2.2.1 (For setting the time)

At this point, I just want to put the original program back on the Teensy.

Display manual
https://drive.google.com/open?id=0BzJvWIL7mrfcS0NOOVhtY3Njb1k

Arduino Code:
Code:
#include <font5x7.h>
#include <font8x16.h>
#include <fontlargenumber.h>
#include <sevenSegment.h>
#include <TimeLib.h>
#include <Wire.h>
#include "ClosedCube_HDC1080.h"
ClosedCube_HDC1080 hdc1080;

const int SW1 = 16;
const int led = 13;
int SWS = 0;
int T = 0;
int H = 0;
int easterMonth = 0;
int easterDay = 0;
int LarryBD = 0;
int StephenBD = 0;
int MLeMayBD = 0;
int MichelleLeMayBD = 0;
int KWicksBD = 0;
int ADavisBD = 0;
int DMeagerBD = 0;

void setup() {
  
  setSyncProvider(getTeensy3Time); /* If you get an error saying this line
                                      was not declared in this scope,
                                      you missed a bracket somewhere.*/
  delay(100);
  if (timeStatus()!= timeSet) {
    Serial.println("Unable to sync with the RTC");
  } else {
    Serial.println("RTC has set the system time");
  }

  hdc1080.begin(0x40);

  pinMode(SW1, INPUT);
  pinMode(led, OUTPUT);

  // Serial

  Serial1.begin(4800);
  delay(100);

    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of nulls
    Serial1.write(0x01);
    Serial1.write("Z00");
    Serial1.write(0x02);
    Serial1.write("E$"); //Clear memory and set memory configuration
    Serial1.write("AAU0100FF00");
    //Serial1.write("BBL007F0000");
    //Serial1.write("CAU0100FF00");
    //Serial1.write("DAU0100FF00");
    //Serial1.write("EAU0100FF00");
    Serial1.write(0x04);


//Text file "A" Tempature & Humidity read from an HDC1080 on the I2C bus

    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of nulls
    Serial1.write(0x01);              //Start of Header
    Serial1.write("Z00");             //Sign address (00 = All addresses)
    Serial1.write(0x02);              //Start of Text
    Serial1.write("A");               //Write String File
    Serial1.write(0x1b);              //ESC
    Serial1.write(0x22);              //Top line
    Serial1.write(0x62);              //Stationary text Centered
    Serial1.write(0x10);              //
    Serial1.write("B");               //Settings for string file B
    Serial1.write(0x04);              //End of Transmission

    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Loading...");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Please wait...");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }

} //End setup

void loop() {

  //Timekeeping
 
    if (Serial.available()) {
    time_t t = processSyncMessage();
    if (t != 0) {
      Teensy3Clock.set(t); // set the RTC
      setTime(t);
    }
  }
  digitalClockDisplay();  
  delay(900);

  int SWS = digitalRead(SW1);
  if (SWS == 1)
  {
  DNE();
      }


{

  // Connect to API


//Send Tempature & Humidity to serial monitor
T = hdc1080.readTemperature();
  Serial.print(hdc1080.readTemperature()*1.8+32);
  Serial.print("F");
  Serial.print('\n');
  Serial.print(hdc1080.readHumidity());
  Serial.print("%");
  Serial.print('\n');
  Serial.print('\n');


//Write File "A" containing Text with I2C data from HDC1080 device
    if (second() == 0)
    {
Temperature();
    }

  SWS = digitalRead(SW1);
  if (SWS == 1)
  {
  DNE();
      }

    if (second() == 10)
    {
      time();
    }

  SWS = digitalRead(SW1);
  if (SWS == 1)
  {
  DNE();
      }

// Birthdays

if (month() == 3 && day() == 20 && second() == 50)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Happy ");
    DMeagerBD = year() - 1994;
    Serial1.print(DMeagerBD);
    if (DMeagerBD == 11){
      Serial.print("th ");
    }
    else if (DMeagerBD == 1 || DMeagerBD == 21 || DMeagerBD == 31 || DMeagerBD == 41 || DMeagerBD == 51 || DMeagerBD == 61 || DMeagerBD == 71 || DMeagerBD == 81 || DMeagerBD == 91 || DMeagerBD == 101){
      Serial1.print("st ");
    }
    else if (DMeagerBD == 2 || DMeagerBD == 22 || DMeagerBD == 32 || DMeagerBD == 42 || DMeagerBD == 52 || DMeagerBD == 62 || DMeagerBD == 72 || DMeagerBD == 82 || DMeagerBD == 92 || DMeagerBD == 102){
      Serial1.print("nd ");
    }
    else if (DMeagerBD == 3 || DMeagerBD == 23 || DMeagerBD == 33 || DMeagerBD == 43 || DMeagerBD == 53 || DMeagerBD == 63 || DMeagerBD == 73 || DMeagerBD == 83 || DMeagerBD == 93 || DMeagerBD == 103){
      Serial1.print("rd ");
    }
    else
    {
      Serial1.print("th ");
    }
    Serial1.print("Birthday");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Drew Meager");
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }

    if (month() == 6 && day() == 7 && second() == 50)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Happy ");
    StephenBD = year() - 1979;
    Serial1.print(StephenBD);
    if (StephenBD == 11){
      Serial.print("th ");
    }
    else if (StephenBD == 1 || StephenBD == 21 || StephenBD == 31 || StephenBD == 41 || StephenBD == 51 || StephenBD == 61 || StephenBD == 71 || StephenBD == 81 || StephenBD == 91 || StephenBD == 101){
      Serial1.print("st ");
    }
    else if (StephenBD == 2 || StephenBD == 22 || StephenBD == 32 || StephenBD == 42 || StephenBD == 52 || StephenBD == 62 || StephenBD == 72 || StephenBD == 82 || StephenBD == 92 || StephenBD == 102){
      Serial1.print("nd ");
    }
    else if (StephenBD == 3 || StephenBD == 23 || StephenBD == 33 || StephenBD == 43 || StephenBD == 53 || StephenBD == 63 || StephenBD == 73 || StephenBD == 83 || StephenBD == 93 || StephenBD == 103){
      Serial1.print("rd ");
    }
    else
    {
      Serial1.print("th ");
    }
    Serial1.print("Birthday");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Stephen");
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }
      
    if (month() == 12 && day() == 16 && second() == 50)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Happy ");
    LarryBD = year() - 1983;
    Serial1.print(LarryBD);
    if (LarryBD == 11){
      Serial.print("th ");
    }
    else if (LarryBD == 1 || LarryBD == 21 || LarryBD == 31 || LarryBD == 41 || LarryBD == 51 || LarryBD == 61 || LarryBD == 71 || LarryBD == 81 || LarryBD == 91 || LarryBD == 101){
      Serial1.print("st ");
    }
    else if (LarryBD == 2 || LarryBD == 22 || LarryBD == 32 || LarryBD == 42 || LarryBD == 52 || LarryBD == 62 || LarryBD == 72 || LarryBD == 82 || LarryBD == 92 || LarryBD == 102){
      Serial1.print("nd ");
    }
    else if (LarryBD == 3 || LarryBD == 23 || LarryBD == 33 || LarryBD == 43 || LarryBD == 53 || LarryBD == 63 || LarryBD == 73 || LarryBD == 83 || LarryBD == 93 || LarryBD == 103){
      Serial1.print("rd ");
    }
    else
    {
      Serial1.print("th ");
    }
    Serial1.print("Birthday");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Larry Kranz");
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }
      
    if (month() == 5 && day() == 4 && second() == 40)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Happy ");
    MLeMayBD = year() - 1977;
    Serial1.print(MLeMayBD);
    if (MLeMayBD == 11){
      Serial.print("th ");
    }
    else if (MLeMayBD == 1 || MLeMayBD == 21 || MLeMayBD == 31 || MLeMayBD == 41 || MLeMayBD == 51 || MLeMayBD == 61 || MLeMayBD == 71 || MLeMayBD == 81 || MLeMayBD == 91 || MLeMayBD == 101){
      Serial1.print("st ");
    }
    else if (MLeMayBD == 2 || MLeMayBD == 22 || MLeMayBD == 32 || MLeMayBD == 42 || MLeMayBD == 52 || MLeMayBD == 62 || MLeMayBD == 72 || MLeMayBD == 82 || MLeMayBD == 92 || MLeMayBD == 102){
      Serial1.print("nd ");
    }
    else if (MLeMayBD == 3 || MLeMayBD == 23 || MLeMayBD == 33 || MLeMayBD == 43 || MLeMayBD == 53 || MLeMayBD == 63 || MLeMayBD == 73 || MLeMayBD == 83 || MLeMayBD == 93 || MLeMayBD == 103){
      Serial1.print("rd ");
    }
    else
    {
      Serial1.print("th ");
    }
    Serial1.print("Birthday");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Michael LeMay");
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }
      
//    if (month() == 12 && day() == 16 && second() == 50)
//    {
//    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
//    Serial1.write(0x01);  //Start of Header
//    Serial1.write("Z00"); //All sign types, (00 all addresses)
//    Serial1.write(0x02);  //Start of text
//    Serial1.write("AA");  //Write Text File
//    Serial1.write(0x1b);  //Escape
//    Serial1.write(0x22);  //Top Line
//    Serial1.write(0x62);  //Hold
//    Serial1.print("Happy ");
//    LarryBD = year() - 1983;
//    Serial1.print(LarryBD);
//    if (LarryBD == 11){
//      Serial.print("th ");
//    }
//    else if (LarryBD == 1 || LarryBD == 21 || LarryBD == 31 || LarryBD == 41 || LarryBD == 51 || LarryBD == 61 || LarryBD == 71 || LarryBD == 81 || LarryBD == 91 || LarryBD == 101){
//      Serial1.print("st ");
//    }
//    else if (LarryBD == 2 || LarryBD == 22 || LarryBD == 32 || LarryBD == 42 || LarryBD == 52 || LarryBD == 62 || LarryBD == 72 || LarryBD == 82 || LarryBD == 92 || LarryBD == 102){
//      Serial1.print("nd ");
//    }
//    else if (LarryBD == 3 || LarryBD == 23 || LarryBD == 33 || LarryBD == 43 || LarryBD == 53 || LarryBD == 63 || LarryBD == 73 || LarryBD == 83 || LarryBD == 93 || LarryBD == 103){
//      Serial1.print("rd ");
//    }
//    else
//    {
//      Serial1.print("th ");
//    }
//    Serial1.print("Birthday");
//    Serial1.write(0x1b);  //Escape
//    Serial1.write(0x26);  //Bottom Line
//    Serial1.write(0x62);  //Hold
//    Serial1.print("Larry Kranz");
//    Serial1.print("!!!");
//    Serial1.write(0x04);  //End Transmission
//    //delay (5000);
//    }
    
    if (month() == 1 && day() == 23 && second() == 50)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Happy ");
    MichelleLeMayBD = year() - 1976;
    Serial1.print(MichelleLeMayBD);
    if (MichelleLeMayBD == 11){
      Serial.print("th ");
    }
    else if (MichelleLeMayBD == 1 || MichelleLeMayBD == 21 || MichelleLeMayBD == 31 || MichelleLeMayBD == 41 || MichelleLeMayBD == 51 || MichelleLeMayBD == 61 || MichelleLeMayBD == 71 || MichelleLeMayBD == 81 || MichelleLeMayBD == 91 || MichelleLeMayBD == 101){
      Serial1.print("st ");
    }
    else if (MichelleLeMayBD == 2 || MichelleLeMayBD == 22 || MichelleLeMayBD == 32 || MichelleLeMayBD == 42 || MichelleLeMayBD == 52 || MichelleLeMayBD == 62 || MichelleLeMayBD == 72 || MichelleLeMayBD == 82 || MichelleLeMayBD == 92 || MichelleLeMayBD == 102){
      Serial1.print("nd ");
    }
    else if (MichelleLeMayBD == 3 || MichelleLeMayBD == 23 || MichelleLeMayBD == 33 || MichelleLeMayBD == 43 || MichelleLeMayBD == 53 || MichelleLeMayBD == 63 || MichelleLeMayBD == 73 || MichelleLeMayBD == 83 || MichelleLeMayBD == 93 || MichelleLeMayBD == 103){
      Serial1.print("rd ");
    }
    else
    {
      Serial1.print("th ");
    }
    Serial1.print("Birthday");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Michelle LeMay");
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }
      
    if (month() == 8 && day() == 29 && second() == 50)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Happy ");
    KWicksBD = year() - 1955;
    Serial1.print(KWicksBD);
    if (KWicksBD == 11){
      Serial.print("th ");
    }
    else if (KWicksBD == 1 || KWicksBD == 21 || KWicksBD == 31 || KWicksBD == 41 || KWicksBD == 51 || KWicksBD == 61 || KWicksBD == 71 || KWicksBD == 81 || KWicksBD == 91 || KWicksBD == 101){
      Serial1.print("st ");
    }
    else if (KWicksBD == 2 || KWicksBD == 22 || KWicksBD == 32 || KWicksBD == 42 || KWicksBD == 52 || KWicksBD == 62 || KWicksBD == 72 || KWicksBD == 82 || KWicksBD == 92 || KWicksBD == 102){
      Serial1.print("nd ");
    }
    else if (KWicksBD == 3 || KWicksBD == 23 || KWicksBD == 33 || KWicksBD == 43 || KWicksBD == 53 || KWicksBD == 63 || KWicksBD == 73 || KWicksBD == 83 || KWicksBD == 93 || KWicksBD == 103){
      Serial1.print("rd ");
    }
    else
    {
      Serial1.print("th ");
    }
    Serial1.print("Birthday");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Kathy Wicks");
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }
    
    if (month() == 4 && day() == 23 && second() == 50)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Happy ");
    ADavisBD = year() - 1979;
    Serial1.print(ADavisBD);
    if (ADavisBD == 11){
      Serial.print("th ");
    }
    else if (ADavisBD == 1 || ADavisBD == 21 || ADavisBD == 31 || ADavisBD == 41 || ADavisBD == 51 || ADavisBD == 61 || ADavisBD == 71 || ADavisBD == 81 || ADavisBD == 91 || ADavisBD == 101){
      Serial1.print("st ");
    }
    else if (ADavisBD == 2 || ADavisBD == 22 || ADavisBD == 32 || ADavisBD == 42 || ADavisBD == 52 || ADavisBD == 62 || ADavisBD == 72 || ADavisBD == 82 || ADavisBD == 92 || ADavisBD == 102){
      Serial1.print("nd ");
    }
    else if (ADavisBD == 3 || ADavisBD == 23 || ADavisBD == 33 || ADavisBD == 43 || ADavisBD == 53 || ADavisBD == 63 || ADavisBD == 73 || ADavisBD == 83 || ADavisBD == 93 || ADavisBD == 103){
      Serial1.print("rd ");
    }
    else
    {
      Serial1.print("th ");
    }
    Serial1.print("Birthday");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Adam & Albert Davis");
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }

// Holidays
    
    if (month() == 1 && day() == 1 && second() == 50)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Happy New Year");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print(year());
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }

     if (year() == 2018 && month() == 4 && day() == 1 && second() == 40)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x63);  //Flash
    Serial1.print("WARNING!!!");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("APRIL FOOLS DAY");
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }

    if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Happy");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Easter");
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }

    if (month() == 7 && day() == 4 && second() == 50)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Happy");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Independence Day");
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }

    if (month() == 11 && day() > 22 && day() < 29 && weekday() == 5 && second() == 50)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Happy");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Thanksgiving");
    Serial1.print("!!!");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }

    if (month() == 5 && day() == 4 && second() == 50)
    {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("May the Fourth");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("be with you");
    Serial1.print(".");
    Serial1.write(0x04);  //End Transmission
    //delay (5000);
    }

  SWS = digitalRead(SW1);
  if (SWS == 1)
  {
  DNE();
      }


}
}

    void DNE() {
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial.println("Do Not Enter!!!");
    Serial1.write(0x01);  //Start of Header
    //Serial1.write();      //Sign Type Code (Optional)
    Serial1.write("Z00"); //Sign address
    //Serial1.write(0x5D);  //Exception Code    
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("RECORDING IN PROGRESS");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x63);  //Flash
    Serial1.print("DO NOT ENTER!!!");
    Serial1.write(0x04); //End Transmission
    while (digitalRead(SW1) == 1) {
      testing();
    }}

    void testing() {
    SWS = digitalRead(SW1);
    if (SWS == 1)
    {
      digitalWrite(led, HIGH);
      delay(100);
      digitalWrite(led, LOW);
      delay(100);
    return; 
    }}

void time()
{
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    if (weekday() == 1){
      Serial1.print("Sunday ");
    }
    if (weekday() == 2){
      Serial1.print("Monday ");
    }
    if (weekday() == 3){
      Serial1.print("Tuesday ");
    }
    if (weekday() == 4){
      Serial1.print("Wednesday ");
    }
    if (weekday() == 5){
      Serial1.print("Thursday ");
    }
    if (weekday() == 6){
      Serial1.print("Friday ");
    }
    if (weekday() == 7){
      Serial1.print("Saturday ");
    }
    if (hour() == 0){
      Serial1.print("12");
    }
    else if (hour() > 12){
      H = hour() - 12;
      Serial1.print(H);
    }
    else
    {
      Serial1.print(hour());
    }
    
    Serial1.print(":");
    if (minute() < 10)
    {
      Serial1.print("0");
    }
    Serial1.print(minute());
    if (hour() < 12){
      Serial1.print("AM");
    }
    else
    {
      Serial1.print("PM");
    }
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    if (month() == 1){
      Serial1.print("January ");
    }
    if (month() == 2){
      Serial1.print("Febuary ");
    }
    if (month() == 3){
      Serial1.print("March ");
    }
    if (month() == 4){
      Serial1.print("April ");
    }
    if (month() == 5){
      Serial1.print("May ");
    }
    if (month() == 6){
      Serial1.print("June ");
    }
    if (month() == 7){
      Serial1.print("July ");
    }
    if (month() == 8){
      Serial1.print("August ");
    }
    if (month() == 9){
      Serial1.print("September ");
    }
    if (month() == 10){
      Serial1.print("October ");
    }
    if (month() == 11){
      Serial1.print("November ");
    }
    if (month() == 12){
      Serial1.print("December ");
    }
    Serial1.print(day());
    Serial1.print(", ");
    Serial1.print(year());
    Serial1.write(0x04);  //End Transmission
    loop();
    //delay (50000);
    }

void Temperature()
{
    for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
    Serial1.write(0x01);  //Start of Header
    Serial1.write("Z00"); //All sign types, (00 all addresses)
    Serial1.write(0x02);  //Start of text
    Serial1.write("AA");  //Write Text File
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x26);  //Bottom Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Humidity: ");
    Serial1.print(hdc1080.readHumidity());
    Serial1.print("%");
    Serial1.write(0x1b);  //Escape
    Serial1.write(0x22);  //Top Line
    Serial1.write(0x62);  //Hold
    Serial1.print("Temp: ");
    Serial1.print(hdc1080.readTemperature()*1.8+32);  //Convert Celcus to Farenheight
    Serial1.print("F / ");
    Serial1.print(hdc1080.readTemperature());
    Serial1.print("C");
    Serial1.write(0x04);  //End Transmission
    loop();
    //delay (10000);
}

  //More Timekeeping
    void digitalClockDisplay() {
  // digital clock display of the time
  Serial.print(hour());
  printDigits(minute());
  printDigits(second());
  Serial.print(" ");
  Serial.print(day());
  Serial.print(" ");
  Serial.print(month());
  Serial.print(" ");
  Serial.print(year()); 
  Serial.println(); 
}

time_t getTeensy3Time()
{
  return Teensy3Clock.get();
}

//  code to process time sync messages from the serial port
#define TIME_HEADER  "T"   // Header tag for serial time sync message

unsigned long processSyncMessage() {
  unsigned long pctime = 0L;
  const unsigned long DEFAULT_TIME = 1357041600; // Jan 1 2013 

  if(Serial.find(TIME_HEADER)) {
     pctime = Serial.parseInt();
     return pctime;
     if( pctime < DEFAULT_TIME) { // check the value is a valid time (greater than Jan 1 2013)
       pctime = 0L; // return 0 to indicate that the time is not valid
     }
  }
  return pctime;
}

void printDigits(int digits){
  // utility function for digital clock display: prints preceding colon and leading 0
  Serial.print(":");
  if(digits < 10)
    Serial.print('0');
  Serial.print(digits);
}

Processing Time Set:
Code:
/**
 * SyncArduinoClock. 
 *
 * portIndex must be set to the port connected to the Arduino
 * 
 * The current time is sent in response to request message from Arduino 
 * or by clicking the display window 
 *
 * The time message is 11 ASCII text characters; a header (the letter 'T')
 * followed by the ten digit system time (unix time)
 */
 

import processing.serial.*;
import java.util.Date;
import java.util.Calendar;
import java.util.GregorianCalendar;

public static final short portIndex = 4;  // select the com port, 0 is the first port
public static final String TIME_HEADER = "T"; //header for arduino serial time message 
public static final char TIME_REQUEST = 7;  // ASCII bell character 
public static final char LF = 10;     // ASCII linefeed
public static final char CR = 13;     // ASCII linefeed
Serial myPort;     // Create object from Serial class

void setup() {  
  size(200, 200);
  println(Serial.list());
  println(" Connecting to -> " + Serial.list()[portIndex]);
  myPort = new Serial(this,Serial.list()[portIndex], 9600);
  println(getTimeNow());
}

void draw()
{
  textSize(20);
  textAlign(CENTER);
  fill(0);
  text("Click to send\nTime Sync", 0, 75, 200, 175);
  if ( myPort.available() > 0) {  // If data is available,
    char val = char(myPort.read());         // read it and store it in val
    if(val == TIME_REQUEST){
       long t = getTimeNow();
       sendTimeMessage(TIME_HEADER, t);   
    }
    else
    { 
       if(val == LF)
           ; //igonore
       else if(val == CR)           
         println();
       else  
         print(val); // echo everying but time request
    }
  }  
}

void mousePressed() {  
  sendTimeMessage( TIME_HEADER, getTimeNow());   
}


void sendTimeMessage(String header, long time) {  
  String timeStr = String.valueOf(time);  
  myPort.write(header);  // send header and time to arduino
  myPort.write(timeStr); 
  myPort.write('\n');  
}

long getTimeNow(){
  // java time is in ms, we want secs    
  Date d = new Date();
  Calendar cal = new GregorianCalendar();
  long current = d.getTime()/1000;
  long timezone = cal.get(cal.ZONE_OFFSET)/1000;
  long daylight = cal.get(cal.DST_OFFSET)/1000;
  return current + timezone + daylight; 
}

I don't have any issues with setting the time once the program is loaded. Every once in a while, I update the time to account for drift in the Teensy's RTC.
The display is connected to the processor using a single channel HEX-FET (IRFD110) and an RS-232 interface (SP-233). I also get temperature and humidity from a Texas Instruments HDC 1080 on the I2C Bus. Battery backup is provided by a KEMET FE0H155ZF Supercapacitor instead of a battery. I can make a connection diagram if necessary.

If someone can help me figure out why this suddenly compile, I would appreciate it.
Nothing has changed since the last time this sketch was compiled, same sketch with no changes, same processor, same computer, new house, which is why I'm perplexed and seeking help.
 
Turning on Verbose for console output and posting what leads to and is shown for :: "Error compiling for board Teensy 3.6."

Could probably lead to the answer. Not having the libraries on hand prevents attempts at compiling to recreate.

Assuming the IDE and TeensyDuino versions are the same as before? They are not current - but if it worked before it shouldn't be a problem with them. Suspect a missing or altered library in 'sketchbook\libraries' or perhaps something in the INO file is altered.
 
1. If you get compile errors, you should check these (activate The Arduino IDE’s verbose mode). These tell you normally what and where the problem is. Post the detailed compiler output here to get more efficient help.
2. You are using outdated software almost everywhere: current macOS is 10.14, current Arduino is 1.87, current Teensyduino is 1.44. Although most probably not related to your compile problem, it is always a good idea to keep everything up to date.
 
This is the second time I typed this reply because I hit the wrong button, nut that has little to do with anything.

Before creating this post, I looked at everything I put in it for 10 minutes thinking if theres something I could add to be as thorough as possible. What's worse, I have Verbose turned on and for some reason, it didn't occur to me to add it, so, here it is.

Code:
/Applications/Arduino 1.8.2.app/Contents/Java/arduino-builder -dump-prefs -logger=machine -hardware /Applications/Arduino 1.8.2.app/Contents/Java/hardware -tools /Applications/Arduino 1.8.2.app/Contents/Java/tools-builder -tools /Applications/Arduino 1.8.2.app/Contents/Java/hardware/tools/avr -built-in-libraries /Applications/Arduino 1.8.2.app/Contents/Java/libraries -libraries /Users/stephenalemay/Documents/Arduino/libraries -fqbn=teensy:avr:teensy36:usb=serial,speed=180,opt=o2std,keys=en-us -vid-pid=0X16C0_0X0483 -ide-version=10802 -build-path /var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768 -warnings=default -build-cache /var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_cache_220842 -verbose /Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino
/Applications/Arduino 1.8.2.app/Contents/Java/arduino-builder -compile -logger=machine -hardware /Applications/Arduino 1.8.2.app/Contents/Java/hardware -tools /Applications/Arduino 1.8.2.app/Contents/Java/tools-builder -tools /Applications/Arduino 1.8.2.app/Contents/Java/hardware/tools/avr -built-in-libraries /Applications/Arduino 1.8.2.app/Contents/Java/libraries -libraries /Users/stephenalemay/Documents/Arduino/libraries -fqbn=teensy:avr:teensy36:usb=serial,speed=180,opt=o2std,keys=en-us -vid-pid=0X16C0_0X0483 -ide-version=10802 -build-path /var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768 -warnings=default -build-cache /var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_cache_220842 -verbose /Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino
Using board 'teensy36' from platform in folder: /Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr
Using core 'teensy3' from platform in folder: /Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr
WARNING: Category 'Real-time clock' in library DS3231 is not valid. Setting to 'Uncategorized'
Detecting libraries used...
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768/sketch/LED_Display.ino.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768/sketch/LED_Display.ino.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768/sketch/LED_Display.ino.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768/sketch/LED_Display.ino.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768/sketch/LED_Display.ino.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src/TeensyView.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src/hardware.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src/hardware.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/Time-master/DateStrings.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/Time-master/Time.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/Wire.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/WireKinetis.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility/twi.c" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src/ClosedCube_HDC1080.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI/SPI.cpp" -o "/dev/null"
Generating function prototypes...
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768/sketch/LED_Display.ino.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino 1.8.2.app/Contents/Java/tools-builder/ctags/5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768/preproc/ctags_target_for_gcc_minus_e.cpp"
Compiling sketch...
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768/sketch/LED_Display.ino.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_601768/sketch/LED_Display.ino.cpp.o"
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:180:5: warning: "/*" within comment [-Wcomment]
     /*for (int i = 0; i < 10; i++) Serial1.write(0x00); //String of Nulls
     ^
LED_Display: In function 'void loop()':
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                      ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                            ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                              ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                 ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                   ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ^
LED_Display:510: warning: suggest parentheses around '&&' within '||' 
     if (year() == 2018 && month() == 4 && day() == 1 && second() == 50 || year() == 2019 && month() == 4 && day() == 21 && second() == 50 || year() == 2020 && month() == 4 && day() == 12 && second() == 50 || year() == 2021 && month() == 4 && day() == 4 && second() == 50 || year() == 2022 && month() == 4 && day() == 17 && second() == 50 || year() == 2023 && month() == 4 && day() == 9 && second() == 50 || year() == 2024 && month() == 3 && day() == 31 && second() == 50 || year() == 2025 && month() == 4 && day() == 20 && second() == 50 || year() == 2026 && month() == 4 && day() == 5 && second() == 50 || year() == 2027 && month() == 3 && day() == 28 && second() == 50 || year() == 2028 && month() == 4 && day() == 16 && second() == 50 || year() == 2029 && month() == 4 && day() == 1 && second() == 50 || year() == 2030 && month() == 4 && day() == 21 && second() == 50 || year() == 2031 && month() == 4 && day() == 13 && second() == 50 || year() == 2032 && month() == 3 && day() == 28 && second() == 50 || year() == 2033 && month() == 4 && day() == 17 && second() == 50 || year() == 2034 && month() == 4 && day() == 9 && second() == 50 || year() == 2035 && month() == 3 && day() == 25 && second() == 50 || year() == 2036 && month() == 4 && day() == 13 && second() == 50 || year() == 2037 && month() == 4 && day() == 1 && second() == 50)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino: At global scope:
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:10:20: error: redefinition of 'ClosedCube_HDC1080 hdc1080'
 ClosedCube_HDC1080 hdc1080;
                    ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino:8:20: note: 'ClosedCube_HDC1080 hdc1080' previously declared here
 ClosedCube_HDC1080 hdc1080;
                    ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:20:11: error: redefinition of 'const int SW1'
 const int SW1 = 16;
           ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino:10:11: note: 'const int SW1' previously defined here
 const int SW1 = 16;
           ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:21:11: error: redefinition of 'const int led'
 const int led = 13;
           ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino:11:11: note: 'const int led' previously defined here
 const int led = 13;
           ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:22:5: error: redefinition of 'int SWS'
 int SWS = 0;
     ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino:12:5: note: 'int SWS' previously defined here
 int SWS = 0;
     ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:23:5: error: redefinition of 'int T'
 int T = 0;
     ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino:13:5: note: 'int T' previously defined here
 int T = 0;
     ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino: In function 'void setup()':
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:25:6: error: redefinition of 'void setup()'
 void setup() {
      ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino:25:6: note: 'void setup()' previously defined here
 void setup() {
      ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino: In function 'void loop()':
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:73:6: error: redefinition of 'void loop()'
 void loop() {
      ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino:94:6: note: 'void loop()' previously defined here
 void loop() {
      ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino: In function 'void DNE()':
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:231:10: error: redefinition of 'void DNE()'
     void DNE() {
          ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino:600:10: note: 'void DNE()' previously defined here
     void DNE() {
          ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino: In function 'void testing()':
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:253:10: error: redefinition of 'void testing()'
     void testing() {
          ^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino:622:10: note: 'void testing()' previously defined here
     void testing() {
          ^
Using library SparkFun_TeensyView_Arduino_Library-master at version 1.1.0 in folder: /Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master 
Using library Time-master at version 1.5 in folder: /Users/stephenalemay/Documents/Arduino/libraries/Time-master 
Using library Wire at version 1.0 in folder: /Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire 
Using library ClosedCube_HDC1080_Arduino-master at version 1.3.1 in folder: /Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master 
Using library SPI at version 1.0 in folder: /Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI 
Error compiling for board Teensy 3.6.

Bear in mind, even tho there's TeensyView stuff in here, I don't have the TeensyView installed, but that hasn't caused a problem before.
 
about the non-sequitur … easy to lose posting text - forum does auto save … a page refresh when it went away ( if not cancel ) might have offered 'restore auto saved content' on the lower edge of edit box.
 
I think the issue was that I hit "+Reply to Thread" on the top left instead of "Post Quick Reply" in the bottom right, thus nuking everything I typed.
 
In that the first 'error' would be there to address. Might be worth checking the warnings to make sure they aren't messing with anything.

/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino: At global scope:
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:10:20: error: redefinition of 'ClosedCube_HDC1080 hdc1080'
ClosedCube_HDC1080 hdc1080;
^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino:8:20: note: 'ClosedCube_HDC1080 hdc1080' previously declared here
ClosedCube_HDC1080 hdc1080;
^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:20:11: error: redefinition of 'const int SW1'
const int SW1 = 16;
^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino:10:11: note: 'const int SW1' previously defined here
const int SW1 = 16;
^
/Users/stephenalemay/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:21:11: error: redefinition of 'const int led'
const int led = 13;
 
I think the issue was that I hit "+Reply to Thread" on the top left instead of "Post Quick Reply" in the bottom right, thus nuking everything I typed.

Just tested - and indeed that would have left the auto save content ready to restore … anything after auto save period would have been kept and refresh would have presented restore option.
 
I don't have a clue what to do about the redefinitions and stuff. This is the verbose output that does compile.

Code:
/Applications/Arduino 1.8.2.app/Contents/Java/arduino-builder -dump-prefs -logger=machine -hardware /Applications/Arduino 1.8.2.app/Contents/Java/hardware -tools /Applications/Arduino 1.8.2.app/Contents/Java/tools-builder -tools /Applications/Arduino 1.8.2.app/Contents/Java/hardware/tools/avr -built-in-libraries /Applications/Arduino 1.8.2.app/Contents/Java/libraries -libraries /Users/stephenalemay/Documents/Arduino/libraries -fqbn=teensy:avr:teensy36:usb=serial,speed=180,opt=o2std,keys=en-us -vid-pid=0X16C0_0X0483 -ide-version=10802 -build-path /var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930 -warnings=default -build-cache /var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_cache_220842 -verbose /Users/stephenalemay/Google Drive/Shared/Projects/String_Test/String_Test.ino
/Applications/Arduino 1.8.2.app/Contents/Java/arduino-builder -compile -logger=machine -hardware /Applications/Arduino 1.8.2.app/Contents/Java/hardware -tools /Applications/Arduino 1.8.2.app/Contents/Java/tools-builder -tools /Applications/Arduino 1.8.2.app/Contents/Java/hardware/tools/avr -built-in-libraries /Applications/Arduino 1.8.2.app/Contents/Java/libraries -libraries /Users/stephenalemay/Documents/Arduino/libraries -fqbn=teensy:avr:teensy36:usb=serial,speed=180,opt=o2std,keys=en-us -vid-pid=0X16C0_0X0483 -ide-version=10802 -build-path /var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930 -warnings=default -build-cache /var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_cache_220842 -verbose /Users/stephenalemay/Google Drive/Shared/Projects/String_Test/String_Test.ino
Using board 'teensy36' from platform in folder: /Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr
Using core 'teensy3' from platform in folder: /Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr
WARNING: Category 'Real-time clock' in library DS3231 is not valid. Setting to 'Uncategorized'
Detecting libraries used...
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/sketch/String_Test.ino.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/sketch/String_Test.ino.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/sketch/String_Test.ino.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/sketch/String_Test.ino.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/sketch/String_Test.ino.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src/TeensyView.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src/hardware.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src/hardware.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/Time-master/DateStrings.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/Time-master/Time.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/Wire.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/WireKinetis.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility/twi.c" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src/ClosedCube_HDC1080.cpp" -o "/dev/null"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI/SPI.cpp" -o "/dev/null"
Generating function prototypes...
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w  -g -Wall -ffunction-sections -fdata-sections -nostdlib -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/sketch/String_Test.ino.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino 1.8.2.app/Contents/Java/tools-builder/ctags/5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/preproc/ctags_target_for_gcc_minus_e.cpp"
Compiling sketch...
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/sketch/String_Test.ino.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/sketch/String_Test.ino.cpp.o"
Compiling libraries...
Compiling library "SparkFun_TeensyView_Arduino_Library-master"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src/TeensyView.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/SparkFun_TeensyView_Arduino_Library-master/TeensyView.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src/hardware.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/SparkFun_TeensyView_Arduino_Library-master/hardware.cpp.o"
Compiling library "Time-master"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/Time-master/DateStrings.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/Time-master/DateStrings.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/Time-master/Time.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/Time-master/Time.cpp.o"
Compiling library "Wire"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/Wire.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/Wire/Wire.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/WireKinetis.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/Wire/WireKinetis.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility/twi.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/Wire/utility/twi.c.o"
Compiling library "ClosedCube_HDC1080_Arduino-master"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src/ClosedCube_HDC1080.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/ClosedCube_HDC1080_Arduino-master/ClosedCube_HDC1080.cpp.o"
Compiling library "SPI"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "-I/Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master/src" "-I/Users/stephenalemay/Documents/Arduino/libraries/Time-master" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master/src" "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI/SPI.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/SPI/SPI.cpp.o"
Compiling core...
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -x assembler-with-cpp -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/memcpy-armv7m.S" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/memcpy-armv7m.S.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -x assembler-with-cpp -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/memset.S" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/memset.S.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/analog.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/analog.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/eeprom.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/eeprom.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/keylayouts.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/keylayouts.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/math_helper.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/math_helper.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/mk20dx128.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/mk20dx128.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/nonstd.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/nonstd.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/pins_teensy.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/pins_teensy.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/ser_print.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/ser_print.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial1.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial1.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial2.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial2.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial3.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial3.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial4.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial4.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial5.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial5.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial6.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial6.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial6_lpuart.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial6_lpuart.c.o"
/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/serial6_lpuart.c:65:16: warning: 'use9Bits' defined but not used [-Wunused-variable]
 static uint8_t use9Bits = 0;
                ^
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/touch.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/touch.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_desc.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_desc.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_dev.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_dev.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_joystick.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_joystick.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_keyboard.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_keyboard.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_mem.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_mem.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_midi.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_midi.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_mouse.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_mouse.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_mtp.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_mtp.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_rawhid.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_rawhid.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_seremu.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_seremu.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_serial.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_serial.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_touch.c" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_touch.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/AudioStream.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/AudioStream.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/DMAChannel.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/DMAChannel.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial1.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial1.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial2.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial2.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial3.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial3.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial4.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial4.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial5.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial5.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/HardwareSerial6.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial6.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/IPAddress.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/IPAddress.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/IntervalTimer.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/IntervalTimer.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/Print.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/Print.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/Stream.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/Stream.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/Tone.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/Tone.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/WMath.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/WMath.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/WString.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/WString.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/avr_emulation.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/avr_emulation.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/main.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/main.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/new.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/new.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_audio.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_audio.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_flightsim.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_flightsim.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/usb_inst.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_inst.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -fno-exceptions -felide-constructors -std=gnu++0x -fno-rtti -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -D__MK66FX1M0__ -DTEENSYDUINO=136 -DARDUINO=10802 -DF_CPU=180000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3" "/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/yield.cpp" -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/yield.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/memcpy-armv7m.S.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/memset.S.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/analog.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/eeprom.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/keylayouts.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/math_helper.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/mk20dx128.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/nonstd.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/pins_teensy.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/ser_print.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial1.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial2.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial3.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial4.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial5.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial6.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/serial6_lpuart.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/touch.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_desc.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_dev.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_joystick.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_keyboard.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_mem.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_midi.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_mouse.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_mtp.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_rawhid.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_seremu.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_serial.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_touch.c.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/AudioStream.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/DMAChannel.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial1.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial2.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial3.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial4.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial5.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/HardwareSerial6.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/IPAddress.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/IntervalTimer.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/Print.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/Stream.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/Tone.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/WMath.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/WString.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/avr_emulation.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/main.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/new.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_audio.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_flightsim.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/usb_inst.cpp.o"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc-ar" rcs "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/yield.cpp.o"
Archiving built core (caching) in: /var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_cache_220842/core/core_teensy_avr_teensy36_usb_serial,speed_180,opt_o2std,keys_en-us_63a9100d0ea2d8a0c1feb721f8c90dec.a
Linking everything together...
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -O2 -Wl,--gc-sections,--relax,--defsym=__rtc_localtime=1542415020 "-T/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/cores/teensy3/mk66fx1m0.ld"  -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -o "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/String_Test.ino.elf" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/sketch/String_Test.ino.cpp.o" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/SparkFun_TeensyView_Arduino_Library-master/TeensyView.cpp.o" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/SparkFun_TeensyView_Arduino_Library-master/hardware.cpp.o" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/Time-master/DateStrings.cpp.o" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/Time-master/Time.cpp.o" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/Wire/Wire.cpp.o" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/Wire/WireKinetis.cpp.o" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/Wire/utility/twi.c.o" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/ClosedCube_HDC1080_Arduino-master/ClosedCube_HDC1080.cpp.o" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/libraries/SPI/SPI.cpp.o" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/core/core.a" "-L/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930" -larm_cortexM4lf_math -lm
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objcopy" -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/String_Test.ino.elf" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/String_Test.ino.eep"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objcopy" -O ihex -R .eeprom "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/String_Test.ino.elf" "/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930/String_Test.ino.hex"
"/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools//teensy_post_compile" "-file=String_Test.ino" "-path=/var/folders/y1/tzd00cz96jb7xr2xh59xn7yr0000gp/T/arduino_build_609930" "-tools=/Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/../tools/" "-board=TEENSY36"
Opening Teensy Loader...
Using library SparkFun_TeensyView_Arduino_Library-master at version 1.1.0 in folder: /Users/stephenalemay/Documents/Arduino/libraries/SparkFun_TeensyView_Arduino_Library-master 
Using library Time-master at version 1.5 in folder: /Users/stephenalemay/Documents/Arduino/libraries/Time-master 
Using library Wire at version 1.0 in folder: /Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/Wire 
Using library ClosedCube_HDC1080_Arduino-master at version 1.3.1 in folder: /Users/stephenalemay/Documents/Arduino/libraries/ClosedCube_HDC1080_Arduino-master 
Using library SPI at version 1.0 in folder: /Applications/Arduino 1.8.2.app/Contents/Java/hardware/teensy/avr/libraries/SPI 
Sketch uses 31368 bytes (2%) of program storage space. Maximum is 1048576 bytes.
Global variables use 6016 bytes (2%) of dynamic memory, leaving 256128 bytes for local variables. Maximum is 262144 bytes.
 
Not sure where to start with that? A working and non-working version? Some difference between the two?

The duplicate errors seem to be from a second compilation inclusion of :: /Users/sxxxy/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display.ino

And then it hits :: /Users/sxxxy/Google Drive/Shared/Projects/LED Display/LED_Display/LED_Display (1).ino:180:5: warning: "/*" within comment [-Wcomment]
 
Wait!
Seriously?!
Where did the duplicate file come from?!
I deleted the duplicate file and the sketch compiled instantly!
Thank you!
 
For some reason, Google Docs decided to duplicate a LOT of files. I did quite a bit of cleanup and this issue shouldn't happen again, but hopefully, my experience here will help someone else.
Just for fun, here's a board layout (incomplete) that I'm using as a test platform to control multiple displays. The 4-pin modular connector on the left is for connecting a I2C Thermal Hydrometer while the two 6-pin Modular connectors on the right are RS232 outputs that match the connector on the displays. The big circle is a SuperCapacitor that's used as a battery backup instead of a button cell. Sure, it's more expensive, but it should last for the life of the device plus adds a little needed weight.
LED Dot Matrix Display Driver.png
 
Status
Not open for further replies.
Back
Top