[solved] How to update code (working fine with IDE 1.0.6, not working with IDE 1.8)?

In order to upload the miniEngine1program by Airic Lenz on an Arduino UNO, I have to re-install IDE 1.0.6, if I try to do this with a more recent IDE I have several error messages. I suppose it's due to some evolution of coding. Is there any systematic and simple way to upgrade this code ? I don't have any coding skills.

Since I can't upload here the program folder (too recent member) I just copy the first file out of 9 :

/*

    See www.openmoco.org for more information

    2015 Airic Lenz, C.A. Church
    
    The 1st version of this code, dealing with core functionalities, 
    was heavily inspired by the OpenMoCo Engine by C.A. Church
    and is basically based on it. Thank you for your great work! 

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

*/

// Max sketch size size for 32k Arduinos: 28,672 bytes = 0x7000


#include "Wire.h"
#include "LiquidCrystal.h"  
#include "EEPROM.h"
#include <avr/pgmspace.h>
#include <RTClib.h>           // See https://github.com/jcw/rtclib
// #include <MemoryFree.h>    // See http://www.arduino.cc/playground/Code/AvailableMemory


// --------------------------
// Version of the software

#define VERSION             1
#define SUBVERSION          3


// --------------------------
// Arduino pins
  
  // pin to tell the motor drivers to go to sleep
#define MOTOR_SLEEP_PIN     2         
#define MOTOR_STEP_PIN      12
#define MOTOR_DIR_PIN       13

  // shutter and focus connections
#define CAMERA_PIN          3
#define FOCUS_PIN           11 

  // pin for LCD backlight
#define LCD_BACKLIGHT_PIN   10
  // pin for reaing analog key input
#define LCD_KEY_PIN         A0  


  // limit switches for stopping the program
  // one for each side of teh dolly
#define LIMIT_SWITCH_PIN_1  A2  
#define LIMIT_SWITCH_PIN_2  A3  



// --------------------------
// General action status flags:
// 
// B0 = operating mode (0 = shoot-move-shoot; 1 = continuous)
// B1 = camera focussing
// B2 = start cycle immediately
// B3 = camera shooting
// B4 = program running
// B5 = camera post exposure
// B6 = motor slot open
// B7 = motor post delay is active

byte action_status = B0;

// the time we started with an action (focussing, exposure, post delay) 
unsigned long action_start_time;

// --------------------------
// Camera settings

// cycle length of the whole cycle in half seconds (4 * 0.5 = 2 seconds)
unsigned int cycle_length = 4;

// camera shoot counter
unsigned int camera_shoot_count     = 0;
// the focus line will be risen before the exposure is done (in milliseconds)
unsigned int camera_focus_time      = 0;
// the time we want to expose our pictures (in milliseconds)
unsigned int camera_exp_time        = 100;
// time after exposure before the motor is moved (in milliseconds)
unsigned int camera_exp_post        = 200;

// the maximum amount of shots to do (0 = unlimited)
unsigned int camera_shot_max        = 0;

// --------------------------
// defines the camera behaviour
//
// B0 = Focus line high or low while exposing
// B1 =
// B2 =
// B3 =
// B4 =
// B5 =
// B6 =
// B7 =


byte camera_status        = B0;



// --------------------------
// Motor settings



  // motor ramping types
#define RAMPING_LINEAR        0
#define RAMPING_ATANGENS      1
#define RAMPING_SINUS         2


  // used motor ramping
#define MOTOR_RAMP_TYPE       RAMPING_ATANGENS // see the definitions just before this line for possible choices.

  // acceleration and decelleration time (in steps)
unsigned int  motor_ramp            = 500;   
  // total number of pulses for move (1600 steps per rev)
unsigned long motor_steps           = 0;   
  // number of maximum steps the motor is allowed to do  (0 = unlimited)
unsigned long motor_steps_max       = 0; // 0 = no limit
  // delay after motor movement
unsigned int motor_post             = 0; 
  // maximum delay in microsecond (delay between steps at minimum 
  // speed of the motor (start and endphase)). 
unsigned long motor_step_delay_max   = 15000;   
  // minimum delay in microseconds (delay between steps at maximum speed of the motor) 
unsigned long motor_step_delay_min   = 100;    

  // the amount of steps done away from the defined home position
  // clockwise = direction bit low (positive count)
  // anti-clockwise = direction bit high (negative count)
long  home_steps                    = 0;



// General Motor status flags:
//
// B0 = sleep on / off (the pin has to be set inverse --> sleep on = pin low)
// B1 = limit switches on / off
// B2 = 
// B3 = 
// B4 = motor direction
// B5 = 
// B6 = 
// B7 = 
   
byte motor_status  = B11000000;


// the time we started the program
unsigned long program_start_time;

// --------------------------
// Display
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);



// --------------------------
// Timed-Programs (RTC) status flags:
// 
// B0 = timed-program running
// B1 = active programs in the future
// B2 = 
// B3 = 
// B4 = 
// B5 = 
// B6 = 
// B7 = 

byte program_status = B0;

 // the max number of programs available 
#define program_amount    20   

  // the program that is curently edited, 255 = no program is editet
byte current_program =    255;

  // the program that is curently running
byte running_program =    255;

  // the number of programs we have defined;
byte program_count =      0;

// day flags of the programs 
// B0  monday
// B1  tuesday
// B2  wednesday
// B3  thursday
// B4  friday
// B5  saturday
// B6  sunday
// B7  use weekdays (low = use single date)

byte program_weekdays[program_amount]; 

  // start date and time of the program
DateTime program_datetime[program_amount]; 

  // program duration in minutes
unsigned int program_duration[program_amount];
 
// other flags of the programs 
// 
// B0  enabled / disabled
// B1  move back to home
// B2  
// B3  
// B4  
// B5  
// B6  
// B7  

byte program_flag[program_amount];

  // content of the menu (we initialize the array with some items - 
  // fitting the longest possible menu - have a look at mE_program
  // to check the program amount!!! - all programs will be listed in
  // one menu - the longest regular menu is 7 items long)
char lines[20][17]; 




// --------------------------
// User interface 

  // --------------------------
  // Strings of our menu. 
  // This is done to store the strings in in the program flash.
  // If given like this: "some string", the strings would be placed in
  // the RAM.

prog_char string_0  [] PROGMEM = "On ";    
prog_char string_1  [] PROGMEM = "Off";
prog_char string_2  [] PROGMEM = "CW ";   
prog_char string_3  [] PROGMEM = "CCW";
prog_char string_4  [] PROGMEM = "Stp:";
prog_char string_5  [] PROGMEM = "D:";
prog_char string_6  [] PROGMEM = "Program started.";
prog_char string_7  [] PROGMEM = "Program stopped.";   
prog_char string_8  [] PROGMEM = "enabled";
prog_char string_9  [] PROGMEM = "disabled";

prog_char string_10 [] PROGMEM = "Camera";
prog_char string_11 [] PROGMEM = "Motor";
prog_char string_12 [] PROGMEM = "Program";
prog_char string_13 [] PROGMEM = "General";
prog_char string_14 [] PROGMEM = "Settings";
prog_char string_15 [] PROGMEM = "Version info";

prog_char string_16 [] PROGMEM = "Cycle length";
prog_char string_17 [] PROGMEM = "Focus time";
prog_char string_18 [] PROGMEM = "Exp. time";
prog_char string_19 [] PROGMEM = "Focus behav.";
prog_char string_20 [] PROGMEM = "Max. shots";
prog_char string_21 [] PROGMEM = "Post delay";
prog_char string_22 [] PROGMEM = "Test shot";

prog_char string_23 [] PROGMEM = "Motor steps ";
prog_char string_24 [] PROGMEM = "Direction";
prog_char string_25 [] PROGMEM = "Motor home";
prog_char string_26 [] PROGMEM = "Motor sleep";
prog_char string_27 [] PROGMEM = "Max steps";
prog_char string_28 [] PROGMEM = "Ramp";

prog_char string_29 [] PROGMEM = "Operat. mode";
prog_char string_30 [] PROGMEM = "B-Light time";
prog_char string_31 [] PROGMEM = "B-Light powr";
prog_char string_32 [] PROGMEM = "System time ";

prog_char string_33 [] PROGMEM = "Save settgs.";
prog_char string_34 [] PROGMEM = "Autosave";
prog_char string_35 [] PROGMEM = "Reset";

prog_char string_36 [] PROGMEM = "Developers";
prog_char string_37 [] PROGMEM = "(alphabt. o.):";
prog_char string_38 [] PROGMEM = "Airic Lenz,";
prog_char string_39 [] PROGMEM = "Alvarocalvo,";
prog_char string_40 [] PROGMEM = "C.A. Church,";
prog_char string_41 [] PROGMEM = "Marc Lane";
prog_char string_42 [] PROGMEM = "For questions";                
prog_char string_43 [] PROGMEM = "have a look at";                
prog_char string_44 [] PROGMEM = "openmoco.org  ";               
prog_char string_45 [] PROGMEM = "";                // reserve

prog_char string_46 [] PROGMEM = "Press SELECT to";  

prog_char string_47 [] PROGMEM = "";  
prog_char string_48 [] PROGMEM = "";  
prog_char string_49 [] PROGMEM = "";             
prog_char string_50 [] PROGMEM = "";  
prog_char string_51 [] PROGMEM = "";  
prog_char string_52 [] PROGMEM = "";

prog_char string_53 [] PROGMEM = "do a test shot.";  

prog_char string_54 [] PROGMEM = "";
prog_char string_55 [] PROGMEM = "";
prog_char string_56 [] PROGMEM = "";
prog_char string_57 [] PROGMEM = "";
prog_char string_58 [] PROGMEM = "";

prog_char string_59 [] PROGMEM = "Set home";
prog_char string_60 [] PROGMEM = "";

prog_char string_61 [] PROGMEM = "Add program ";
prog_char string_62 [] PROGMEM = "add a program.";

prog_char string_63 [] PROGMEM = "Start time";
prog_char string_64 [] PROGMEM = "Weekdays";
prog_char string_65 [] PROGMEM = "Duration";
prog_char string_66 [] PROGMEM = "Move home";
prog_char string_67 [] PROGMEM = "Status";
prog_char string_68 [] PROGMEM = "Delete";

prog_char string_69 [] PROGMEM = "";
prog_char string_70 [] PROGMEM = "";
prog_char string_71 [] PROGMEM = "";

prog_char string_72 [] PROGMEM = "save settings.";

prog_char string_73 [] PROGMEM = "Autosave settgs:";

prog_char string_74 [] PROGMEM = "reset settings.";
prog_char string_75 [] PROGMEM = "Restoring CFG..";
prog_char string_76 [] PROGMEM = "Restarting..";

prog_char string_77 [] PROGMEM = "set motor home.";

prog_char string_78 [] PROGMEM = "Move to home";
prog_char string_79 [] PROGMEM = "Moving motor to";
prog_char string_80 [] PROGMEM = "home. Stand by.";

prog_char string_81 [] PROGMEM = "Program start:";
prog_char string_82 [] PROGMEM = "M T W T F S S";
prog_char string_83 [] PROGMEM = "Duration:";
prog_char string_84 [] PROGMEM = "Move home @ end:";
prog_char string_85 [] PROGMEM = "Program status:";

prog_char string_86 [] PROGMEM = "delete program.";

prog_char string_87 [] PROGMEM = "high w. shutter";
prog_char string_88 [] PROGMEM = "low w. shutter";

prog_char string_89 [] PROGMEM = "continuous";
prog_char string_90 [] PROGMEM = "shoot-move-shoot";

prog_char string_91 [] PROGMEM = "anti-clockwise";
prog_char string_92 [] PROGMEM = "clockwise";

prog_char string_93 [] PROGMEM = "A limit switch"; 
prog_char string_94 [] PROGMEM = "was triggered!";

prog_char string_95 [] PROGMEM = "Max motor step";
prog_char string_96 [] PROGMEM = "limit reached!";

prog_char string_97 [] PROGMEM = "Max camera shot";
prog_char string_98 [] PROGMEM = "";

prog_char string_99 [] PROGMEM = "Post delay  ";
prog_char string_100[] PROGMEM = "Motor post delay:";

prog_char string_101[] PROGMEM = "Max speed";
prog_char string_102[] PROGMEM = "Max speed delay:";

prog_char string_103[] PROGMEM = "Min speed";
prog_char string_104[] PROGMEM = "Min speed delay:";

prog_char string_105[] PROGMEM = "Lmt-Switches";
prog_char string_106[] PROGMEM = "";

/*
prog_char string_107[] PROGMEM = "Jog";
prog_char string_108[] PROGMEM = "Motor jog:";
prog_char string_109[] PROGMEM = "Up=CW  Down=CCW";
*/


// Now set up a table to refer to the strings (a simple list
// of all the strings we defined)
PROGMEM prog_char *string_table[] = {   
    string_0,   string_1,   string_2,   string_3,   string_4, 
    string_5,   string_6,   string_7,   string_8,   string_9,   
    string_10,  string_11,  string_12,  string_13,  string_14,  
    string_15,  string_16,  string_17,  string_18,  string_19, 
    string_20,  string_21,  string_22,  string_23,  string_24,
    string_25,  string_26,  string_27,  string_28,  string_29,
    string_30,  string_31,  string_32,  string_33,  string_34,
    string_35,  string_36,  string_37,  string_38,  string_39,
    string_40,  string_41,  string_42,  string_43,  string_44,
    string_45,  string_46,  string_47,  string_48,  string_49,
    string_50,  string_51,  string_52,  string_53,  string_54,
    string_55,  string_56,  string_57,  string_58,  string_59,
    string_60,  string_61,  string_62,  string_63,  string_64,
    string_65,  string_66,  string_67,  string_68,  string_69,
    string_70,  string_71,  string_72,  string_73,  string_74,
    string_75,  string_76,  string_77,  string_78,  string_79,
    string_80,  string_81,  string_82,  string_83,  string_84,
    string_85,  string_86,  string_87,  string_88,  string_89,
    string_90,  string_91,  string_92,  string_93,  string_94,
    string_95,  string_96,  string_97,  string_98,  string_99,
    string_100, string_101, string_102, string_103, string_104,
    string_105, string_106 // , string_107, string_108, string_109   
  }; 


// UI status flags
// 
// B0 = backlight on / off
// B1 = ui repaint flag
// B2 = settings autosave flag
// B3 = settings were changed flag
// B4 = 24h / 12h time (24 = LOW, 12 = HIGH)  not used yet
// B5 = long key press
// B6 = message on screen
// B7 = 

byte ui_status = B11100000;


  // wait time until backlight turns off in milliseconds
unsigned int backlight_wait = 10;
  
  // backlight level in percent
byte backlight_level=100;

  // a variable to remeber when a message started
unsigned long message_start_time; 

// a variable to remeber when a message started
byte message_duration;

  // --------------------------
  // our Real time clock object
RTC_DS1307 RTC;
  // and the current time of the system
DateTime time;

 





// ===================================================================================
// Arduino Setup Procedure
// ===================================================================================
void setup() {
  
  //Serial.begin(9600);

  pinMode(MOTOR_DIR_PIN, OUTPUT);
  pinMode(MOTOR_STEP_PIN, OUTPUT);
  pinMode(MOTOR_SLEEP_PIN, OUTPUT);
  
  pinMode(CAMERA_PIN, OUTPUT);
  pinMode(FOCUS_PIN, OUTPUT);

  pinMode(LCD_BACKLIGHT_PIN, OUTPUT);

  // set motor to sleep
  digitalWrite(MOTOR_SLEEP_PIN, LOW);

  
  // init the LCD display
  // set up the LCD's number of columns and rows: 
  lcd.begin(16, 2);
  lcd.clear();
 

  // did we previously save settings to eeprom?
  // is config saved and has the config has the correct version?
  if ((is_eeprom_saved()) && 
      (is_OK_eeprom_version())) {
    
    load_config();
    
  } else {  
    
    write_config();
    write_eeprom_version();
  } 
   
   
  // enable backlight
  setBacklightLevel();
   
   
  byte scroll_up[8] = {
                      B00100,
                      B01110,
                      B11111,
                      B00100,
                      B00100,
                      B00000,
                      B00000,
                      B00000
                    };

  byte scroll_down[8] = {
                      B00000,
                      B00000,
                      B00000,
                      B00100,
                      B00100,
                      B11111,
                      B01110,
                      B00100
                    };
 
   
  // create the special chars we need for the UI
  lcd.createChar(0, scroll_up);
  lcd.createChar(1, scroll_down);
 
  /*
  Serial.println();
  Serial.print(freeMemory());
  Serial.println(" byte free.");
  */ 
  
  
  // welcome screen 
  lcd.setCursor(3, 0);
  lcd.print("miniEngine");
  lcd.setCursor(6, 1);
  lcd.print("v");
  lcd.print(VERSION);
  lcd.print(".");
  lcd.print(SUBVERSION);
  
  delay(1500);
  

  // RTC Stuff
  Wire.begin();
  RTC.begin();

}





// ===================================================================================
// Arduinos eternal loop procedure
// ===================================================================================
void loop() {
  
  // do the screen stuff
  do_screen();
     
  // programm is running
  if (action_status & B00001000) {
    
    
    // =================================================
    // C O N T I N U O U S   m o d e
    // =================================================
    if (action_status & B10000000) {
      
      // do some continuous steps    
      doMotorContinuous();

      // if it is time or the "start a new cycle immediately" flag is set
      if ((action_status & B00100000) ||
          ((program_start_time + ((unsigned long) cycle_length * 500UL * (unsigned long) camera_shoot_count)) <= millis())) {
             
        // if not exposing right now and not in camera post delay (makes this sense in continuous??)        
        if (!(action_status & B01000000) && 
            !(action_status & B00010000) && 
            !(action_status & B00000100))  { 
          
          // do some continuous steps    
          doMotorContinuous();    
              
          // should we do focussing?    
          if (camera_focus_time > 0) {
            camera_focus();
          } else {
            // shoot camera 
            camera_shoot();
          }
          
        }
        
        // do some continuous steps    
        doMotorContinuous();
        
         // delete the start immediately flag if set
        if (action_status & B00100000) {
          
          // delete the start immediately flag
          bitClear(action_status, 5); // B11011111
        }
      }
      
      // do some continuous steps    
      doMotorContinuous();
      
      
      // is camera focussing right now?
      if (action_status &  B01000000) {
        
        // did we focus the time we wanted to focus?
        if((action_start_time + (unsigned long) camera_focus_time) <= millis()) {
                   
          // stop focussing (this function automatically starts the exposure)
          camera_stop_focus();
        
        } 
      }
      
      // do some continuous steps    
      doMotorContinuous();
            
      // is camera exposing right now?
      if (action_status &  B00010000) {
       
        // did we exposed the time we wanted to expose?
        if((action_start_time + (unsigned long)camera_exp_time) <= millis()) {
                    
          // stop shooting
          camera_stop_shoot();

        } 
      }
      
      // do some continuous steps    
      doMotorContinuous();
      
      // now check the limit switches if we need to stop the program
      // this function is called as late as possible after the key reading because
      // analogRead needs some pre delay time to deliver accurate measurements...
      check_limit_switches();
      
    }
    
    // =================================================
    // S H O O T - M O V E - S H O O T   m o d e
    // =================================================
    else {
    
      // if it is time or the "start a new cycle immediately" flag is set
      if ((action_status & B00100000) ||
          ((program_start_time + ((unsigned long) cycle_length * 500UL * (unsigned long) camera_shoot_count)) <= millis())) {
        
            
        // if not focussing or exposing right now and not in camera or motor post delay        
        if (!(action_status & B01000000) && 
            !(action_status & B00010000) && 
            !(action_status & B00000100) && 
            !(action_status & B00000001) )  { 
          
          // should we do focussing?    
          if (camera_focus_time > 0) {
            camera_focus();
          } else {
            
            // shoot camera 
            camera_shoot();
          }
        }
        
         
        // delete the start immediately flag if set
        if (action_status & B00100000) {
          
          // toggle the start immediately flag to off
          bitClear(action_status, 5);
        }
      }

      
      // is camera focussing right now?
      if (action_status &  B01000000) {
        
        // did we focus the time we wanted to focus?
        if((action_start_time + (unsigned long) camera_focus_time) <= millis()) {
                   
          // stop focussing (this function automatically starts the exposure)
          camera_stop_focus();
        
        } 
      }

      
      // is camera exposing right now?
      if (action_status &  B00010000) {
       
        // did we exposed the time we wanted to expose?
        if((action_start_time + camera_exp_time) <= millis()) {
          
          // stop shooting
          camera_stop_shoot();
          
        } 
      }
     
     
      // post exposure delay
      if (action_status & B00000100) {
      
        // did we exposed the time we wanted to expose?
        if((action_start_time + (unsigned long) camera_exp_time + (unsigned long) camera_exp_post) <= millis()) {
  
          camera_stop_post();
          
        }
        
      }
     
     // time for the engines
     if (action_status & B00000010) {
      
        // do the blocking motor phase with error check
        doMotorPhase(true);
        
        motor_stop();
        
        // now check the limit switches if we need to stop the program
        // this function is called after the blocking motor phase because
        // analogRead needs some pre delay time to deliver accurate
        // measurements...
        check_limit_switches();
        
     } 
     
     
     // motor post delay
     if (action_status & B00000001) {
     
       // did we waited the time we wanted to wait?
        if((action_start_time + (unsigned long) motor_post) <= millis()) {
  
          // clear the waintg flag...
          bitClear(action_status, 0); // B11111110
          
        }
     
     }
   
    } // operation mode
   
         
    // if the programm is running and we are in contiuous mode
    continuous_check();
            
  }  // program is running
  
  // read the time from the RTC (valid for the next loop)
  time = RTC.now(); 
   
  // if the programm is running and we are in contiuous mode
  continuous_check(); 
   
  // the function that checks if we need to start or stop a program
  check_programs();
  
  // if the programm is running and we are in contiuous mode
  continuous_check(); 
  
  // check if there are programs that will be triggered in the future
  // this is done for being able to display this information ("smart P")
  check_programFuture();
  
}




Thank you

So what were the errors?
Grab them from the IDE (copy for forum)
Then we can possibly help.

Most likely to be library updated versions, but we’ll never know.

here is the error log :

Arduino : 1.8.12 (Windows 10), TD: 1.51, Carte : "Arduino Uno"

C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\philp\Documents\Arduino\libraries -fqbn=arduino:avr:uno -ide-version=10812 -build-path C:\Users\philp\AppData\Local\Temp\arduino_build_560671 -warnings=none -build-cache C:\Users\philp\AppData\Local\Temp\arduino_cache_999073 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino5.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\miniE.ino
C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\philp\Documents\Arduino\libraries -fqbn=arduino:avr:uno -ide-version=10812 -build-path C:\Users\philp\AppData\Local\Temp\arduino_build_560671 -warnings=none -build-cache C:\Users\philp\AppData\Local\Temp\arduino_cache_999073 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino5.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\miniE.ino
Using board 'uno' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr
Using core 'arduino' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr
Detecting libraries used...
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o nul
Alternatives for Wire.h: [Wire@1.0]
ResolveLibrary(Wire.h)
-> candidates: [Wire@1.0]
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o nul
Alternatives for LiquidCrystal.h: [LiquidCrystal@1.0.7]
ResolveLibrary(LiquidCrystal.h)
-> candidates: [LiquidCrystal@1.0.7]
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o nul
Alternatives for EEPROM.h: [EEPROM@2.0]
ResolveLibrary(EEPROM.h)
-> candidates: [EEPROM@2.0]
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o nul
Alternatives for RTClib.h: [RTClib@1.13.0]
ResolveLibrary(RTClib.h)
-> candidates: [RTClib@1.13.0]
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o nul
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src\Wire.cpp" -o nul
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src\utility\twi.c" -o nul
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src\LiquidCrystal.cpp" -o nul
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Users\philp\Documents\Arduino\libraries\RTClib\RTClib.cpp" -o nul
Generating function prototypes...
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\preproc\ctags_target_for_gcc_minus_e.cpp"
"C:\Program Files (x86)\Arduino\tools-builder\ctags\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\preproc\ctags_target_for_gcc_minus_e.cpp"
Compilation du croquis...
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp.o"
mE_keys:69:56: error: stray '\302' in program

if (5 < abs(analogRead(LCD_KEY_PIN) - analogValue)) {

                                                    ^

mE_keys:69:57: error: stray '\240' in program

if (5 < abs(analogRead(LCD_KEY_PIN) - analogValue)) {

                                                     ^

mE_program:124:61: error: stray '\302' in program

   for (byte p=current_program; p<(program_count-1); p++) {

                                                         ^

mE_program:124:62: error: stray '\240' in program

   for (byte p=current_program; p<(program_count-1); p++) {

                                                          ^

mE_ui_content:167:48: error: stray '\302' in program

     (program_count_old != program_count) || 

                                            ^

mE_ui_content:167:49: error: stray '\240' in program

     (program_count_old != program_count) || 

                                             ^

mE_ui_content:299:47: error: stray '\302' in program

     if (program_weekdays[i] & B01000000) { strcat(temp, "T"); }

                                           ^

mE_ui_content:299:48: error: stray '\240' in program

     if (program_weekdays[i] & B01000000) { strcat(temp, "T"); }

                                            ^

miniE:255:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_0 [] PROGMEM = "On ";

^~~~~~~~~

putchar

miniE:256:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_1 [] PROGMEM = "Off";

^~~~~~~~~

putchar

miniE:257:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_2 [] PROGMEM = "CW ";

^~~~~~~~~

putchar

miniE:258:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_3 [] PROGMEM = "CCW";

^~~~~~~~~

putchar

miniE:259:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_4 [] PROGMEM = "Stp:";

^~~~~~~~~

putchar

miniE:260:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_5 [] PROGMEM = "D:";

^~~~~~~~~

putchar

miniE:261:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_6 [] PROGMEM = "Program started.";

^~~~~~~~~

putchar

miniE:262:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_7 [] PROGMEM = "Program stopped.";

^~~~~~~~~

putchar

miniE:263:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_8 [] PROGMEM = "enabled";

^~~~~~~~~

putchar

miniE:264:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_9 [] PROGMEM = "disabled";

^~~~~~~~~

putchar

miniE:266:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_10 [] PROGMEM = "Camera";

^~~~~~~~~

putchar

miniE:267:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_11 [] PROGMEM = "Motor";

^~~~~~~~~

putchar

miniE:268:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_12 [] PROGMEM = "Program";

^~~~~~~~~

putchar

miniE:269:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_13 [] PROGMEM = "General";

^~~~~~~~~

putchar

miniE:270:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_14 [] PROGMEM = "Settings";

^~~~~~~~~

putchar

miniE:271:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_15 [] PROGMEM = "Version info";

^~~~~~~~~

putchar

miniE:273:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_16 [] PROGMEM = "Cycle length";

^~~~~~~~~

putchar

miniE:274:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_17 [] PROGMEM = "Focus time";

^~~~~~~~~

putchar

miniE:275:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_18 [] PROGMEM = "Exp. time";

^~~~~~~~~

putchar

miniE:276:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_19 [] PROGMEM = "Focus behav.";

^~~~~~~~~

putchar

miniE:277:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_20 [] PROGMEM = "Max. shots";

^~~~~~~~~

putchar

miniE:278:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_21 [] PROGMEM = "Post delay";

^~~~~~~~~

putchar

miniE:279:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_22 [] PROGMEM = "Test shot";

^~~~~~~~~

putchar

miniE:281:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_23 [] PROGMEM = "Motor steps ";

^~~~~~~~~

putchar

miniE:282:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_24 [] PROGMEM = "Direction";

^~~~~~~~~

putchar

miniE:283:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_25 [] PROGMEM = "Motor home";

^~~~~~~~~

putchar

miniE:284:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_26 [] PROGMEM = "Motor sleep";

^~~~~~~~~

putchar

miniE:285:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_27 [] PROGMEM = "Max steps";

^~~~~~~~~

putchar

miniE:286:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_28 [] PROGMEM = "Ramp";

^~~~~~~~~

putchar

miniE:288:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_29 [] PROGMEM = "Operat. mode";

^~~~~~~~~

putchar

miniE:289:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_30 [] PROGMEM = "B-Light time";

^~~~~~~~~

putchar

miniE:290:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_31 [] PROGMEM = "B-Light powr";

^~~~~~~~~

putchar

miniE:291:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_32 [] PROGMEM = "System time ";

^~~~~~~~~

putchar

miniE:293:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_33 [] PROGMEM = "Save settgs.";

^~~~~~~~~

putchar

miniE:294:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_34 [] PROGMEM = "Autosave";

^~~~~~~~~

putchar

miniE:295:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_35 [] PROGMEM = "Reset";

^~~~~~~~~

putchar

miniE:297:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_36 [] PROGMEM = "Developers";

^~~~~~~~~

putchar

miniE:298:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_37 [] PROGMEM = "(alphabt. o.):";

^~~~~~~~~

putchar

miniE:299:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_38 [] PROGMEM = "Airic Lenz,";

^~~~~~~~~

putchar

miniE:300:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_39 [] PROGMEM = "Alvarocalvo,";

^~~~~~~~~

putchar

miniE:301:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_40 [] PROGMEM = "C.A. Church,";

^~~~~~~~~

putchar

miniE:302:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_41 [] PROGMEM = "Marc Lane";

^~~~~~~~~

putchar

miniE:303:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_42 [] PROGMEM = "For questions";

^~~~~~~~~

putchar

miniE:304:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_43 [] PROGMEM = "have a look at";

^~~~~~~~~

putchar

miniE:305:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_44 [] PROGMEM = "openmoco.org ";

^~~~~~~~~

putchar

miniE:306:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_45 [] PROGMEM = ""; // reserve

^~~~~~~~~

putchar

miniE:308:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_46 [] PROGMEM = "Press SELECT to";

^~~~~~~~~

putchar

miniE:310:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_47 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:311:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_48 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:312:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_49 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:313:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_50 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:314:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_51 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:315:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_52 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:317:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_53 [] PROGMEM = "do a test shot.";

^~~~~~~~~

putchar

miniE:319:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_54 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:320:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_55 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:321:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_56 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:322:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_57 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:323:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_58 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:325:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_59 [] PROGMEM = "Set home";

^~~~~~~~~

putchar

miniE:326:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_60 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:328:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_61 [] PROGMEM = "Add program ";

^~~~~~~~~

putchar

miniE:329:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_62 [] PROGMEM = "add a program.";

^~~~~~~~~

putchar

miniE:331:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_63 [] PROGMEM = "Start time";

^~~~~~~~~

putchar

miniE:332:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_64 [] PROGMEM = "Weekdays";

^~~~~~~~~

putchar

miniE:333:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_65 [] PROGMEM = "Duration";

^~~~~~~~~

putchar

miniE:334:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_66 [] PROGMEM = "Move home";

^~~~~~~~~

putchar

miniE:335:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_67 [] PROGMEM = "Status";

^~~~~~~~~

putchar

miniE:336:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_68 [] PROGMEM = "Delete";

^~~~~~~~~

putchar

miniE:338:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_69 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:339:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_70 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:340:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_71 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:342:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_72 [] PROGMEM = "save settings.";

^~~~~~~~~

putchar

miniE:344:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_73 [] PROGMEM = "Autosave settgs:";

^~~~~~~~~

putchar

miniE:346:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_74 [] PROGMEM = "reset settings.";

^~~~~~~~~

putchar

miniE:347:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_75 [] PROGMEM = "Restoring CFG..";

^~~~~~~~~

putchar

miniE:348:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_76 [] PROGMEM = "Restarting..";

^~~~~~~~~

putchar

miniE:350:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_77 [] PROGMEM = "set motor home.";

^~~~~~~~~

putchar

miniE:352:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_78 [] PROGMEM = "Move to home";

^~~~~~~~~

putchar

miniE:353:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_79 [] PROGMEM = "Moving motor to";

^~~~~~~~~

putchar

miniE:354:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_80 [] PROGMEM = "home. Stand by.";

^~~~~~~~~

putchar

miniE:356:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_81 [] PROGMEM = "Program start:";

^~~~~~~~~

putchar

miniE:357:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_82 [] PROGMEM = "M T W T F S S";

^~~~~~~~~

putchar

miniE:358:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_83 [] PROGMEM = "Duration:";

^~~~~~~~~

putchar

miniE:359:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_84 [] PROGMEM = "Move home @ end:";

^~~~~~~~~

putchar

miniE:360:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_85 [] PROGMEM = "Program status:";

^~~~~~~~~

putchar

miniE:362:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_86 [] PROGMEM = "delete program.";

^~~~~~~~~

putchar

miniE:364:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_87 [] PROGMEM = "high w. shutter";

^~~~~~~~~

putchar

miniE:365:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_88 [] PROGMEM = "low w. shutter";

^~~~~~~~~

putchar

miniE:367:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_89 [] PROGMEM = "continuous";

^~~~~~~~~

putchar

miniE:368:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_90 [] PROGMEM = "shoot-move-shoot";

^~~~~~~~~

putchar

miniE:370:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_91 [] PROGMEM = "anti-clockwise";

^~~~~~~~~

putchar

miniE:371:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_92 [] PROGMEM = "clockwise";

^~~~~~~~~

putchar

miniE:373:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_93 [] PROGMEM = "A limit switch";

^~~~~~~~~

putchar

miniE:374:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_94 [] PROGMEM = "was triggered!";

^~~~~~~~~

putchar

miniE:376:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_95 [] PROGMEM = "Max motor step";

^~~~~~~~~

putchar

miniE:377:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_96 [] PROGMEM = "limit reached!";

^~~~~~~~~

putchar

miniE:379:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_97 [] PROGMEM = "Max camera shot";

^~~~~~~~~

putchar

miniE:380:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_98 [] PROGMEM = "";

^~~~~~~~~

putchar

miniE:382:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_99 [] PROGMEM = "Post delay ";

^~~~~~~~~

putchar

miniE:383:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_100[] PROGMEM = "Motor post delay:";

^~~~~~~~~

putchar

miniE:385:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_101[] PROGMEM = "Max speed";

^~~~~~~~~

putchar

miniE:386:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_102[] PROGMEM = "Max speed delay:";

^~~~~~~~~

putchar

miniE:388:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_103[] PROGMEM = "Min speed";

^~~~~~~~~

putchar

miniE:389:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_104[] PROGMEM = "Min speed delay:";

^~~~~~~~~

putchar

miniE:391:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_105[] PROGMEM = "Lmt-Switches";

^~~~~~~~~

putchar

miniE:392:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_106[] PROGMEM = "";

^~~~~~~~~

putchar

miniE:403:9: error: 'prog_char' does not name a type; did you mean 'putchar'?

PROGMEM prog_char *string_table[] = {

     ^~~~~~~~~

     putchar

D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_eeprom.ino: In function 'void write_config()':

mE_eeprom:257:32: error: 'class DateTime' has no member named 'get'

 date = program_datetime[p].get();

                            ^~~

D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_program.ino: In function 'boolean check_programFuture()':

mE_program:58:33: error: 'class DateTime' has no member named 'get'

     if (program_datetime[i].get() > time.get()) {

                             ^~~

mE_program:58:46: error: 'class DateTime' has no member named 'get'

     if (program_datetime[i].get() > time.get()) {

                                          ^~~

D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_program.ino: In function 'void check_programs()':

mE_program:183:23: error: 'class DateTime' has no member named 'dayOfWeek'; did you mean 'dayOfTheWeek'?

       switch(time.dayOfWeek()) {

                   ^~~~~~~~~

                   dayOfTheWeek

In file included from C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,

             from C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp:1:

D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_ui.ino: In function 'void getString(byte, byte)':

mE_ui:995:56: error: 'string_table' was not declared in this scope

strcpy_P(lines[line_number], (char*) pgm_read_word(&(string_table[buf_number])));

                                                    ^

D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_ui.ino:995:56: note: suggested alternative: 'Printable'

D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_ui_content.ino: In function 'void paint_status_time()':

mE_ui_content:1240:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown * 3600);

                         ^~~

mE_ui_content:1243:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown * 60);

                         ^~~

mE_ui_content:1246:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown);

                         ^~~

mE_ui_content:1249:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown * 86400L * 365);

                         ^~~

mE_ui_content:1252:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown * 86400L * 30);

                         ^~~

mE_ui_content:1255:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown * 86400L);

                         ^~~

D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_ui_content.ino: In function 'void paint_status_program_time()':

mE_ui_content:1350:62: error: 'class DateTime' has no member named 'get'

unsigned long timeTemp = program_datetime[current_program].get();

                                                          ^~~

Utilisation de la bibliothèque Wire version 1.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire
Utilisation de la bibliothèque LiquidCrystal version 1.0.7 dans le dossier: C:\Program Files (x86)\Arduino\libraries\LiquidCrystal
Utilisation de la bibliothèque EEPROM version 2.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM
Utilisation de la bibliothèque RTClib version 1.13.0 dans le dossier: C:\Users\philp\Documents\Arduino\libraries\RTClib
exit status 1
stray '\302' in program

error: 'prog_char' does not name a type; 

That seems to be the dominant error, i found this thread (well google did when i searched prog_char arduino ) the solution is there. If you keep getting more errors let us know. (please also post the errormsg within </> code-tags

Arduino : 1.8.12 (Windows 10), TD: 1.51, Carte : "Arduino Uno"

C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\philp\Documents\Arduino\libraries -fqbn=arduino:avr:uno -ide-version=10812 -build-path C:\Users\philp\AppData\Local\Temp\arduino_build_560671 -warnings=none -build-cache C:\Users\philp\AppData\Local\Temp\arduino_cache_999073 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino5.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\miniE.ino
C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\philp\Documents\Arduino\libraries -fqbn=arduino:avr:uno -ide-version=10812 -build-path C:\Users\philp\AppData\Local\Temp\arduino_build_560671 -warnings=none -build-cache C:\Users\philp\AppData\Local\Temp\arduino_cache_999073 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino5.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\miniE.ino
Using board 'uno' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr
Using core 'arduino' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr
Detecting libraries used...
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o nul
Alternatives for Wire.h: [Wire@1.0]
ResolveLibrary(Wire.h)
-> candidates: [Wire@1.0]
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o nul
Alternatives for LiquidCrystal.h: [LiquidCrystal@1.0.7]
ResolveLibrary(LiquidCrystal.h)
-> candidates: [LiquidCrystal@1.0.7]
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o nul
Alternatives for EEPROM.h: [EEPROM@2.0]
ResolveLibrary(EEPROM.h)
-> candidates: [EEPROM@2.0]
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o nul
Alternatives for RTClib.h: [RTClib@1.13.0]
ResolveLibrary(RTClib.h)
-> candidates: [RTClib@1.13.0]
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o nul
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src\Wire.cpp" -o nul
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src\utility\twi.c" -o nul
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src\LiquidCrystal.cpp" -o nul
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Users\philp\Documents\Arduino\libraries\RTClib\RTClib.cpp" -o nul
Generating function prototypes...
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\preproc\ctags_target_for_gcc_minus_e.cpp"
"C:\Program Files (x86)\Arduino\tools-builder\ctags\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\preproc\ctags_target_for_gcc_minus_e.cpp"
Compilation du croquis...
"C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10812 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\variants\standard" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src" "-IC:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src" "-IC:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM\src" "-IC:\Users\philp\Documents\Arduino\libraries\RTClib" "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp" -o "C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp.o"
mE_keys:69:56: error: stray '\302' in program

if (5 < abs(analogRead(LCD_KEY_PIN) - analogValue)) {

                                                    ^
mE_keys:69:57: error: stray '\240' in program

if (5 < abs(analogRead(LCD_KEY_PIN) - analogValue)) {

                                                     ^
mE_program:124:61: error: stray '\302' in program

   for (byte p=current_program; p<(program_count-1); p++) {

                                                         ^
mE_program:124:62: error: stray '\240' in program

   for (byte p=current_program; p<(program_count-1); p++) {

                                                          ^
mE_ui_content:167:48: error: stray '\302' in program

     (program_count_old != program_count) || 

                                            ^
mE_ui_content:167:49: error: stray '\240' in program

     (program_count_old != program_count) || 

                                             ^
mE_ui_content:299:47: error: stray '\302' in program

     if (program_weekdays[i] & B01000000) { strcat(temp, "T"); }

                                           ^
mE_ui_content:299:48: error: stray '\240' in program

     if (program_weekdays[i] & B01000000) { strcat(temp, "T"); }

                                            ^
miniE:255:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_0  PROGMEM = "On ";

^~~~~~~~~

putchar

miniE:256:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_1  PROGMEM = "Off";

^~~~~~~~~

putchar

miniE:257:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_2  PROGMEM = "CW ";

^~~~~~~~~

putchar

miniE:258:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_3  PROGMEM = "CCW";

^~~~~~~~~

putchar

miniE:259:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_4  PROGMEM = "Stp:";

^~~~~~~~~

putchar

miniE:260:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_5  PROGMEM = "D:";

^~~~~~~~~

putchar

miniE:261:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_6  PROGMEM = "Program started.";

^~~~~~~~~

putchar

miniE:262:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_7  PROGMEM = "Program stopped.";

^~~~~~~~~

putchar

miniE:263:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_8  PROGMEM = "enabled";

^~~~~~~~~

putchar

miniE:264:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_9  PROGMEM = "disabled";

^~~~~~~~~

putchar

miniE:266:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_10  PROGMEM = "Camera";

^~~~~~~~~

putchar

miniE:267:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_11  PROGMEM = "Motor";

^~~~~~~~~

putchar

miniE:268:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_12  PROGMEM = "Program";

^~~~~~~~~

putchar

miniE:269:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_13  PROGMEM = "General";

^~~~~~~~~

putchar

miniE:270:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_14  PROGMEM = "Settings";

^~~~~~~~~

putchar

miniE:271:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_15  PROGMEM = "Version info";

^~~~~~~~~

putchar

miniE:273:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_16  PROGMEM = "Cycle length";

^~~~~~~~~

putchar

miniE:274:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_17  PROGMEM = "Focus time";

^~~~~~~~~

putchar

miniE:275:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_18  PROGMEM = "Exp. time";

^~~~~~~~~

putchar

miniE:276:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_19  PROGMEM = "Focus behav.";

^~~~~~~~~

putchar

miniE:277:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_20  PROGMEM = "Max. shots";

^~~~~~~~~

putchar

miniE:278:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_21  PROGMEM = "Post delay";

^~~~~~~~~

putchar

miniE:279:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_22  PROGMEM = "Test shot";

^~~~~~~~~

putchar

miniE:281:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_23  PROGMEM = "Motor steps ";

^~~~~~~~~

putchar

miniE:282:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_24  PROGMEM = "Direction";

^~~~~~~~~

putchar

miniE:283:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_25  PROGMEM = "Motor home";

^~~~~~~~~

putchar

miniE:284:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_26  PROGMEM = "Motor sleep";

^~~~~~~~~

putchar

miniE:285:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_27  PROGMEM = "Max steps";

^~~~~~~~~

putchar

miniE:286:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_28  PROGMEM = "Ramp";

^~~~~~~~~

putchar

miniE:288:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_29  PROGMEM = "Operat. mode";

^~~~~~~~~

putchar

miniE:289:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_30  PROGMEM = "B-Light time";

^~~~~~~~~

putchar

miniE:290:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_31  PROGMEM = "B-Light powr";

^~~~~~~~~

putchar

miniE:291:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_32  PROGMEM = "System time ";

^~~~~~~~~

putchar

miniE:293:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_33  PROGMEM = "Save settgs.";

^~~~~~~~~

putchar

miniE:294:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_34  PROGMEM = "Autosave";

^~~~~~~~~

putchar

miniE:295:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_35  PROGMEM = "Reset";

^~~~~~~~~

putchar

miniE:297:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_36  PROGMEM = "Developers";

^~~~~~~~~

putchar

miniE:298:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_37  PROGMEM = "(alphabt. o.):";

^~~~~~~~~

putchar

miniE:299:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_38  PROGMEM = "Airic Lenz,";

^~~~~~~~~

putchar

miniE:300:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_39  PROGMEM = "Alvarocalvo,";

^~~~~~~~~

putchar

miniE:301:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_40  PROGMEM = "C.A. Church,";

^~~~~~~~~

putchar

miniE:302:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_41  PROGMEM = "Marc Lane";

^~~~~~~~~

putchar

miniE:303:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_42  PROGMEM = "For questions";

^~~~~~~~~

putchar

miniE:304:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_43  PROGMEM = "have a look at";

^~~~~~~~~

putchar

miniE:305:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_44  PROGMEM = "openmoco.org ";

^~~~~~~~~

putchar

miniE:306:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_45  PROGMEM = ""; // reserve

^~~~~~~~~

putchar

miniE:308:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_46  PROGMEM = "Press SELECT to";

^~~~~~~~~

putchar

miniE:310:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_47  PROGMEM = "";

^~~~~~~~~

putchar

miniE:311:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_48  PROGMEM = "";

^~~~~~~~~

putchar

miniE:312:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_49  PROGMEM = "";

^~~~~~~~~

putchar

miniE:313:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_50  PROGMEM = "";

^~~~~~~~~

putchar

miniE:314:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_51  PROGMEM = "";

^~~~~~~~~

putchar

miniE:315:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_52  PROGMEM = "";

^~~~~~~~~

putchar

miniE:317:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_53  PROGMEM = "do a test shot.";

^~~~~~~~~

putchar

miniE:319:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_54  PROGMEM = "";

^~~~~~~~~

putchar

miniE:320:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_55  PROGMEM = "";

^~~~~~~~~

putchar

miniE:321:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_56  PROGMEM = "";

^~~~~~~~~

putchar

miniE:322:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_57  PROGMEM = "";

^~~~~~~~~

putchar

miniE:323:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_58  PROGMEM = "";

^~~~~~~~~

putchar

miniE:325:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_59  PROGMEM = "Set home";

^~~~~~~~~

putchar

miniE:326:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_60  PROGMEM = "";

^~~~~~~~~

putchar

miniE:328:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_61  PROGMEM = "Add program ";

^~~~~~~~~

putchar

miniE:329:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_62  PROGMEM = "add a program.";

^~~~~~~~~

putchar

miniE:331:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_63  PROGMEM = "Start time";

^~~~~~~~~

putchar

miniE:332:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_64  PROGMEM = "Weekdays";

^~~~~~~~~

putchar

miniE:333:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_65  PROGMEM = "Duration";

^~~~~~~~~

putchar

miniE:334:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_66  PROGMEM = "Move home";

^~~~~~~~~

putchar

miniE:335:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_67  PROGMEM = "Status";

^~~~~~~~~

putchar

miniE:336:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_68  PROGMEM = "Delete";

^~~~~~~~~

putchar

miniE:338:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_69  PROGMEM = "";

^~~~~~~~~

putchar

miniE:339:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_70  PROGMEM = "";

^~~~~~~~~

putchar

miniE:340:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_71  PROGMEM = "";

^~~~~~~~~

putchar

miniE:342:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_72  PROGMEM = "save settings.";

^~~~~~~~~

putchar

miniE:344:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_73  PROGMEM = "Autosave settgs:";

^~~~~~~~~

putchar

miniE:346:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_74  PROGMEM = "reset settings.";

^~~~~~~~~

putchar

miniE:347:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_75  PROGMEM = "Restoring CFG..";

^~~~~~~~~

putchar

miniE:348:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_76  PROGMEM = "Restarting..";

^~~~~~~~~

putchar

miniE:350:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_77  PROGMEM = "set motor home.";

^~~~~~~~~

putchar

miniE:352:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_78  PROGMEM = "Move to home";

^~~~~~~~~

putchar

miniE:353:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_79  PROGMEM = "Moving motor to";

^~~~~~~~~

putchar

miniE:354:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_80  PROGMEM = "home. Stand by.";

^~~~~~~~~

putchar

miniE:356:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_81  PROGMEM = "Program start:";

^~~~~~~~~

putchar

miniE:357:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_82  PROGMEM = "M T W T F S S";

^~~~~~~~~

putchar

miniE:358:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_83  PROGMEM = "Duration:";

^~~~~~~~~

putchar

miniE:359:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_84  PROGMEM = "Move home @ end:";

^~~~~~~~~

putchar

miniE:360:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_85  PROGMEM = "Program status:";

^~~~~~~~~

putchar

miniE:362:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_86  PROGMEM = "delete program.";

^~~~~~~~~

putchar

miniE:364:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_87  PROGMEM = "high w. shutter";

^~~~~~~~~

putchar

miniE:365:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_88  PROGMEM = "low w. shutter";

^~~~~~~~~

putchar

miniE:367:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_89  PROGMEM = "continuous";

^~~~~~~~~

putchar

miniE:368:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_90  PROGMEM = "shoot-move-shoot";

^~~~~~~~~

putchar

miniE:370:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_91  PROGMEM = "anti-clockwise";

^~~~~~~~~

putchar

miniE:371:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_92  PROGMEM = "clockwise";

^~~~~~~~~

putchar

miniE:373:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_93  PROGMEM = "A limit switch";

^~~~~~~~~

putchar

miniE:374:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_94  PROGMEM = "was triggered!";

^~~~~~~~~

putchar

miniE:376:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_95  PROGMEM = "Max motor step";

^~~~~~~~~

putchar

miniE:377:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_96  PROGMEM = "limit reached!";

^~~~~~~~~

putchar

miniE:379:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_97  PROGMEM = "Max camera shot";

^~~~~~~~~

putchar

miniE:380:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_98  PROGMEM = "";

^~~~~~~~~

putchar

miniE:382:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_99  PROGMEM = "Post delay ";

^~~~~~~~~

putchar

miniE:383:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_100 PROGMEM = "Motor post delay:";

^~~~~~~~~

putchar

miniE:385:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_101 PROGMEM = "Max speed";

^~~~~~~~~

putchar

miniE:386:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_102 PROGMEM = "Max speed delay:";

^~~~~~~~~

putchar

miniE:388:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_103 PROGMEM = "Min speed";

^~~~~~~~~

putchar

miniE:389:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_104 PROGMEM = "Min speed delay:";

^~~~~~~~~

putchar

miniE:391:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_105 PROGMEM = "Lmt-Switches";

^~~~~~~~~

putchar

miniE:392:1: error: 'prog_char' does not name a type; did you mean 'putchar'?

prog_char string_106 PROGMEM = "";

^~~~~~~~~

putchar

miniE:403:9: error: 'prog_char' does not name a type; did you mean 'putchar'?

PROGMEM prog_char *string_table = {

     ^~~~~~~~~

     putchar
D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_eeprom.ino: In function 'void write_config()':

mE_eeprom:257:32: error: 'class DateTime' has no member named 'get'

 date = program_datetime[p].get();

                            ^~~
D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_program.ino: In function 'boolean check_programFuture()':

mE_program:58:33: error: 'class DateTime' has no member named 'get'

     if (program_datetime[i].get() > time.get()) {

                             ^~~
mE_program:58:46: error: 'class DateTime' has no member named 'get'

     if (program_datetime[i].get() > time.get()) {

                                          ^~~
D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_program.ino: In function 'void check_programs()':

mE_program:183:23: error: 'class DateTime' has no member named 'dayOfWeek'; did you mean 'dayOfTheWeek'?

       switch(time.dayOfWeek()) {

                   ^~~~~~~~~

                   dayOfTheWeek
In file included from C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,

             from C:\Users\philp\AppData\Local\Temp\arduino_build_560671\sketch\miniE.ino.cpp:1:
D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_ui.ino: In function 'void getString(byte, byte)':

mE_ui:995:56: error: 'string_table' was not declared in this scope

strcpy_P(lines[line_number], (char*) pgm_read_word(&(string_table[buf_number])));

                                                    ^
D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_ui.ino:995:56: note: suggested alternative: 'Printable'

D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_ui_content.ino: In function 'void paint_status_time()':

mE_ui_content:1240:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown * 3600);

                         ^~~
mE_ui_content:1243:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown * 60);

                         ^~~
mE_ui_content:1246:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown);

                         ^~~
mE_ui_content:1249:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown * 86400L * 365);

                         ^~~
mE_ui_content:1252:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown * 86400L * 30);

                         ^~~
mE_ui_content:1255:29: error: 'class DateTime' has no member named 'get'

             time = time.get() + (updown * 86400L);

                         ^~~
D:\Timelapse\MiniEngine\miniEngine1-master\miniEngine1-master\Software\miniE\mE_ui_content.ino: In function 'void paint_status_program_time()':

mE_ui_content:1350:62: error: 'class DateTime' has no member named 'get'

unsigned long timeTemp = program_datetime[current_program].get();

                                                          ^~~
Utilisation de la bibliothèque Wire version 1.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire
Utilisation de la bibliothèque LiquidCrystal version 1.0.7 dans le dossier: C:\Program Files (x86)\Arduino\libraries\LiquidCrystal
Utilisation de la bibliothèque EEPROM version 2.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM
Utilisation de la bibliothèque RTClib version 1.13.0 dans le dossier: C:\Users\philp\Documents\Arduino\libraries\RTClib
exit status 1
stray '\302' in program

Yeah great the code-tags, did you read the thread about the 'prog_char' and replacing it with 'const char'

About the error: stray '\302' in program (and the other 'stray' characters) this is a character that looks like a 'space but isn't. It should disappear if you re-type the line that has the error, and remove the original.


mE_program:183:23: error: 'class DateTime' has no member named 'dayOfWeek'; did you mean 'dayOfTheWeek'?

       switch(time.dayOfWeek()) {

It seems that one of the libraries is not fully compatible anymore, but here the compiler makes a clear suggestion.

mE_ui:995:56: error: 'string_table' was not declared in this scope

This is probably a consequence of the 'prog_char' error, and should disappear by it self once the variable is properly declared.

Here is the "new" error log after correcting "prog_char" to "const char". Much better.
I will try your suggestion about the "\302" error

Arduino : 1.8.15 (Windows 10), Carte : "Arduino Yún"





















C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Philippe\Documents\Arduino\libraries -fqbn=arduino:avr:yun -ide-version=10815 -build-path C:\Users\Philippe\AppData\Local\Temp\arduino_build_759342 -warnings=none -build-cache C:\Users\Philippe\AppData\Local\Temp\arduino_cache_179890 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Time Lapse\MiniEngine\miniEngine1-master\miniEngine1-master - Copie\Software\miniE\miniE.ino

C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Philippe\Documents\Arduino\libraries -fqbn=arduino:avr:yun -ide-version=10815 -build-path C:\Users\Philippe\AppData\Local\Temp\arduino_build_759342 -warnings=none -build-cache C:\Users\Philippe\AppData\Local\Temp\arduino_cache_179890 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Time Lapse\MiniEngine\miniEngine1-master\miniEngine1-master - Copie\Software\miniE\miniE.ino

Using board 'yun' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr

Using core 'arduino' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr

Detecting libraries used...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for Wire.h: [Wire@1.0]

ResolveLibrary(Wire.h)

  -> candidates: [Wire@1.0]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for LiquidCrystal.h: [LiquidCrystal@1.0.7]

ResolveLibrary(LiquidCrystal.h)

  -> candidates: [LiquidCrystal@1.0.7]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for EEPROM.h: [EEPROM@2.0]

ResolveLibrary(EEPROM.h)

  -> candidates: [EEPROM@2.0]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for RTClib.h: [rtclib]

ResolveLibrary(RTClib.h)

  -> candidates: [rtclib]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src\\Wire.cpp" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src\\utility\\twi.c" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src\\LiquidCrystal.cpp" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib\\RTClib.cpp" -o nul

Generating function prototypes...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\preproc\\ctags_target_for_gcc_minus_e.cpp"

"C:\\Program Files (x86)\\Arduino\\tools-builder\\ctags\\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\preproc\\ctags_target_for_gcc_minus_e.cpp"

Compilation du croquis...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp.o"

mE_keys:69:56: error: stray '\302' in program

   if (5 < abs(analogRead(LCD_KEY_PIN) - analogValue)) { 

                                                        ^

mE_keys:69:57: error: stray '\240' in program

   if (5 < abs(analogRead(LCD_KEY_PIN) - analogValue)) { 

                                                         ^

mE_program:124:61: error: stray '\302' in program

       for (byte p=current_program; p<(program_count-1); p++) {

                                                             ^

mE_program:124:62: error: stray '\240' in program

       for (byte p=current_program; p<(program_count-1); p++) {

                                                              ^

mE_ui_content:167:48: error: stray '\302' in program

         (program_count_old != program_count) || 

                                                ^

mE_ui_content:167:49: error: stray '\240' in program

         (program_count_old != program_count) || 

                                                 ^

mE_ui_content:299:47: error: stray '\302' in program

         if (program_weekdays[i] & B01000000) { strcat(temp, "T"); }

                                               ^

mE_ui_content:299:48: error: stray '\240' in program

         if (program_weekdays[i] & B01000000) { strcat(temp, "T"); }

                                                ^

mE_ui_content:1512:9: error: stray '\302' in program

   else { lcd.print("_"); }

         ^

mE_ui_content:1512:10: error: stray '\240' in program

   else { lcd.print("_"); }

          ^

miniE:403:34: error: variable 'string_table' must be const in order to be put into read-only section by means of '__attribute__((progmem))'

 PROGMEM const char *string_table[] = {

                                  ^

Utilisation de la bibliothèque Wire version 1.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire 

Utilisation de la bibliothèque LiquidCrystal version 1.0.7 dans le dossier: C:\Program Files (x86)\Arduino\libraries\LiquidCrystal 

Utilisation de la bibliothèque EEPROM version 2.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM 

Utilisation de la bibliothèque rtclib prise dans le dossier : C:\Users\Philippe\Documents\Arduino\libraries\rtclib (legacy)

exit status 1

stray '\302' in program


What about stray ' \240' ? is it the same problem than stary '\302' ?

After re-writing the concerned lignes. Much much better !!!

Arduino : 1.8.15 (Windows 10), Carte : "Arduino Yún"





















C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Philippe\Documents\Arduino\libraries -fqbn=arduino:avr:yun -ide-version=10815 -build-path C:\Users\Philippe\AppData\Local\Temp\arduino_build_759342 -warnings=none -build-cache C:\Users\Philippe\AppData\Local\Temp\arduino_cache_179890 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Time Lapse\MiniEngine\miniEngine1-master\miniEngine1-master - Copie\Software\miniE\miniE.ino

C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Philippe\Documents\Arduino\libraries -fqbn=arduino:avr:yun -ide-version=10815 -build-path C:\Users\Philippe\AppData\Local\Temp\arduino_build_759342 -warnings=none -build-cache C:\Users\Philippe\AppData\Local\Temp\arduino_cache_179890 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Time Lapse\MiniEngine\miniEngine1-master\miniEngine1-master - Copie\Software\miniE\miniE.ino

Using board 'yun' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr

Using core 'arduino' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr

Detecting libraries used...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for Wire.h: [Wire@1.0]

ResolveLibrary(Wire.h)

  -> candidates: [Wire@1.0]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for LiquidCrystal.h: [LiquidCrystal@1.0.7]

ResolveLibrary(LiquidCrystal.h)

  -> candidates: [LiquidCrystal@1.0.7]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for EEPROM.h: [EEPROM@2.0]

ResolveLibrary(EEPROM.h)

  -> candidates: [EEPROM@2.0]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for RTClib.h: [rtclib]

ResolveLibrary(RTClib.h)

  -> candidates: [rtclib]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src\\Wire.cpp" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src\\utility\\twi.c" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src\\LiquidCrystal.cpp" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib\\RTClib.cpp" -o nul

Generating function prototypes...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\preproc\\ctags_target_for_gcc_minus_e.cpp"

"C:\\Program Files (x86)\\Arduino\\tools-builder\\ctags\\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\preproc\\ctags_target_for_gcc_minus_e.cpp"

Compilation du croquis...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp.o"

miniE:403:34: error: variable 'string_table' must be const in order to be put into read-only section by means of '__attribute__((progmem))'

 PROGMEM const char *string_table[] = {

                                  ^

Utilisation de la bibliothèque Wire version 1.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire 

Utilisation de la bibliothèque LiquidCrystal version 1.0.7 dans le dossier: C:\Program Files (x86)\Arduino\libraries\LiquidCrystal 

Utilisation de la bibliothèque EEPROM version 2.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM 

Utilisation de la bibliothèque rtclib prise dans le dossier : C:\Users\Philippe\Documents\Arduino\libraries\rtclib (legacy)

exit status 1

variable 'string_table' must be const in order to be put into read-only section by means of '__attribute__((progmem))'


How should I deal with this :
"variable 'string_table' must be const in order to be put into read-only section by means of 'attribute((progmem))' " ???

A wild guess based on the error message, but how about declaring it as a const ?

You should post your sketch again now that it has been corrected.
Have you used multiple .ino files (tabs in the IDE)?
Some of functions in your original code such as continuous_check() do not appear to defined anywhere and don't look like they belong to any of the explicitly included files.

also : see example from PROGMEM - Arduino Reference

const char *const string_table[] PROGMEM = {string_0, string_1, string_2, string_3, string_4, string_5};

Ok, don't make fun of me, my skills are just to do "ctrl c" and "ctrl V". I try to do it as wisely as possible...
so I changed

PROGMEM const char *string_table[] =

to

const char string_table[] PROGMEM = {

and then the latest error log is....

Arduino : 1.8.15 (Windows 10), Carte : "Arduino Yún"





















C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Philippe\Documents\Arduino\libraries -fqbn=arduino:avr:yun -ide-version=10815 -build-path C:\Users\Philippe\AppData\Local\Temp\arduino_build_759342 -warnings=none -build-cache C:\Users\Philippe\AppData\Local\Temp\arduino_cache_179890 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Time Lapse\MiniEngine\miniEngine1-master\miniEngine1-master - Copie\Software\miniE\miniE.ino

C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Philippe\Documents\Arduino\libraries -fqbn=arduino:avr:yun -ide-version=10815 -build-path C:\Users\Philippe\AppData\Local\Temp\arduino_build_759342 -warnings=none -build-cache C:\Users\Philippe\AppData\Local\Temp\arduino_cache_179890 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Time Lapse\MiniEngine\miniEngine1-master\miniEngine1-master - Copie\Software\miniE\miniE.ino

Using board 'yun' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr

Using core 'arduino' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr

Detecting libraries used...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for Wire.h: [Wire@1.0]

ResolveLibrary(Wire.h)

  -> candidates: [Wire@1.0]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for LiquidCrystal.h: [LiquidCrystal@1.0.7]

ResolveLibrary(LiquidCrystal.h)

  -> candidates: [LiquidCrystal@1.0.7]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for EEPROM.h: [EEPROM@2.0]

ResolveLibrary(EEPROM.h)

  -> candidates: [EEPROM@2.0]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for RTClib.h: [RTCLib_by_NeiroN@1.5.4 rtclib]

ResolveLibrary(RTClib.h)

  -> candidates: [RTCLib_by_NeiroN@1.5.4 rtclib]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src\\Wire.cpp" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src\\utility\\twi.c" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src\\LiquidCrystal.cpp" -o nul

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib\\RTClib.cpp" -o nul

Generating function prototypes...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\preproc\\ctags_target_for_gcc_minus_e.cpp"

"C:\\Program Files (x86)\\Arduino\\tools-builder\\ctags\\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\preproc\\ctags_target_for_gcc_minus_e.cpp"

Compilation du croquis...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp.o"

Compiling libraries...

Compiling library "Wire"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src\\Wire.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\libraries\\Wire\\Wire.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src\\utility\\twi.c" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\libraries\\Wire\\utility\\twi.c.o"

Compiling library "LiquidCrystal"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src\\LiquidCrystal.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\libraries\\LiquidCrystal\\LiquidCrystal.cpp.o"

Compiling library "EEPROM"

Compiling library "rtclib"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib\\RTClib.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\libraries\\rtclib\\RTClib.cpp.o"

Compiling core...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc" -c -g -x assembler-with-cpp -flto -MMD -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\wiring_pulse.S" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring_pulse.S.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\WInterrupts.c" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\WInterrupts.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\hooks.c" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\hooks.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\wiring.c" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\wiring_digital.c" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring_digital.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\wiring_analog.c" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring_analog.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\wiring_pulse.c" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring_pulse.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc" -c -g -Os -w -std=gnu11 -ffunction-sections -fdata-sections -MMD -flto -fno-fat-lto-objects -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\wiring_shift.c" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring_shift.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\CDC.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\CDC.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\HardwareSerial.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\HardwareSerial.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\HardwareSerial0.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\HardwareSerial0.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\HardwareSerial1.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\HardwareSerial1.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\PluggableUSB.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\PluggableUSB.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\HardwareSerial2.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\HardwareSerial2.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\HardwareSerial3.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\HardwareSerial3.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\IPAddress.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\IPAddress.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\Print.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\Print.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\Stream.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\Stream.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\Tone.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\Tone.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\USBCore.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\USBCore.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\WMath.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\WMath.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\WString.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\WString.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\abi.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\abi.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\main.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\main.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\new.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\new.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring_pulse.S.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\WInterrupts.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\hooks.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring_analog.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring_digital.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring_pulse.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\wiring_shift.c.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\CDC.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\HardwareSerial.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\HardwareSerial0.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\HardwareSerial1.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\HardwareSerial2.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\HardwareSerial3.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\IPAddress.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\PluggableUSB.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\Print.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\Stream.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\Tone.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\USBCore.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\WMath.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\WString.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\abi.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\main.cpp.o"

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc-ar" rcs "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\core.a" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\core\\new.cpp.o"

Archivage du noyau construit (mise en cache) dans :  C:\Users\Philippe\AppData\Local\Temp\arduino_cache_179890\core\core_arduino_avr_yun_0c812875ac70eb4a9b385d8fb077f54c.a

Linking everything together...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-gcc" -w -Os -g -flto -fuse-linker-plugin -Wl,--gc-sections -mmcu=atmega32u4 -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342/miniE.ino.elf" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp.o" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\libraries\\Wire\\Wire.cpp.o" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\libraries\\Wire\\utility\\twi.c.o" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\libraries\\LiquidCrystal\\LiquidCrystal.cpp.o" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\libraries\\rtclib\\RTClib.cpp.o" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342/core\\core.a" "-LC:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342" -lm

D:\Time Lapse\MiniEngine\miniEngine1-master\miniEngine1-master - Copie\Software\miniE\mE_ui.ino: In function 'getString':

miniE:403:12: error: variable 'string_table' with dynamic initialization put into program memory area

 const char string_table[] PROGMEM = {

            ^

lto-wrapper.exe: fatal error: C:\Program Files (x86)\Arduino\hardware\tools\avr/bin/avr-gcc returned 1 exit status

compilation terminated.

c:/program files (x86)/arduino/hardware/tools/avr/bin/../lib/gcc/avr/7.3.0/../../../../avr/bin/ld.exe: error: lto-wrapper failed

collect2.exe: error: ld returned 1 exit status

Plusieurs bibliothèque trouvées pour "RTClib.h"

Utilisé : C:\Users\Philippe\Documents\Arduino\libraries\rtclib

Non utilisé : C:\Users\Philippe\Documents\Arduino\libraries\RTCLib_by_NeiroN

Utilisation de la bibliothèque Wire version 1.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire 

Utilisation de la bibliothèque LiquidCrystal version 1.0.7 dans le dossier: C:\Program Files (x86)\Arduino\libraries\LiquidCrystal 

Utilisation de la bibliothèque EEPROM version 2.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM 

Utilisation de la bibliothèque rtclib prise dans le dossier : C:\Users\Philippe\Documents\Arduino\libraries\rtclib (legacy)

exit status 1

variable 'string_table' with dynamic initialization put into program memory area


Your change was not a great success.
Again. Change this:

PROGMEM prog_char *string_table[] = {

to this:

const char *const string_table[] PROGMEM = {

and try again.

From the error messages, there are multiple .ino files in that file system you are working in.
mE_ui.ino
mE_ui_content.ino
etc.

The code you posted originally is only a small part of the whole thing.

Yep almost there, @6v6gt suggestion should do the trick.

I did the change ....
And the winner is....

Arduino : 1.8.15 (Windows 10), Carte : "Arduino Yún"





















C:\Program Files (x86)\Arduino\arduino-builder -dump-prefs -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Philippe\Documents\Arduino\libraries -fqbn=arduino:avr:yun -ide-version=10815 -build-path C:\Users\Philippe\AppData\Local\Temp\arduino_build_759342 -warnings=none -build-cache C:\Users\Philippe\AppData\Local\Temp\arduino_cache_179890 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Time Lapse\MiniEngine\miniEngine1-master\miniEngine1-master - Copie\Software\miniE\miniE.ino

C:\Program Files (x86)\Arduino\arduino-builder -compile -logger=machine -hardware C:\Program Files (x86)\Arduino\hardware -tools C:\Program Files (x86)\Arduino\tools-builder -tools C:\Program Files (x86)\Arduino\hardware\tools\avr -built-in-libraries C:\Program Files (x86)\Arduino\libraries -libraries C:\Users\Philippe\Documents\Arduino\libraries -fqbn=arduino:avr:yun -ide-version=10815 -build-path C:\Users\Philippe\AppData\Local\Temp\arduino_build_759342 -warnings=none -build-cache C:\Users\Philippe\AppData\Local\Temp\arduino_cache_179890 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arduinoOTA.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino7.path=C:\Program Files (x86)\Arduino\hardware\tools\avr -verbose D:\Time Lapse\MiniEngine\miniEngine1-master\miniEngine1-master - Copie\Software\miniE\miniE.ino

Using board 'yun' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr

Using core 'arduino' from platform in folder: C:\Program Files (x86)\Arduino\hardware\arduino\avr

Detecting libraries used...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for Wire.h: [Wire@1.0]

ResolveLibrary(Wire.h)

  -> candidates: [Wire@1.0]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for LiquidCrystal.h: [LiquidCrystal@1.0.7]

ResolveLibrary(LiquidCrystal.h)

  -> candidates: [LiquidCrystal@1.0.7]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for EEPROM.h: [EEPROM@2.0]

ResolveLibrary(EEPROM.h)

  -> candidates: [EEPROM@2.0]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Alternatives for RTClib.h: [RTCLib_by_NeiroN@1.5.4 rtclib]

ResolveLibrary(RTClib.h)

  -> candidates: [RTCLib_by_NeiroN@1.5.4 rtclib]

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o nul

Using cached library dependencies for file: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src\Wire.cpp

Using cached library dependencies for file: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire\src\utility\twi.c

Using cached library dependencies for file: C:\Program Files (x86)\Arduino\libraries\LiquidCrystal\src\LiquidCrystal.cpp

Using cached library dependencies for file: C:\Users\Philippe\Documents\Arduino\libraries\rtclib\RTClib.cpp

Generating function prototypes...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\preproc\\ctags_target_for_gcc_minus_e.cpp"

"C:\\Program Files (x86)\\Arduino\\tools-builder\\ctags\\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\preproc\\ctags_target_for_gcc_minus_e.cpp"

Compilation du croquis...

"C:\\Program Files (x86)\\Arduino\\hardware\\tools\\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10815 -DARDUINO_AVR_YUN -DARDUINO_ARCH_AVR -DUSB_VID=0x2341 -DUSB_PID=0x8041 "-DUSB_MANUFACTURER=\"Unknown\"" "-DUSB_PRODUCT=\"Arduino Yun\"" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\cores\\arduino" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\variants\\yun" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\Wire\\src" "-IC:\\Program Files (x86)\\Arduino\\libraries\\LiquidCrystal\\src" "-IC:\\Program Files (x86)\\Arduino\\hardware\\arduino\\avr\\libraries\\EEPROM\\src" "-IC:\\Users\\Philippe\\Documents\\Arduino\\libraries\\rtclib" "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp" -o "C:\\Users\\Philippe\\AppData\\Local\\Temp\\arduino_build_759342\\sketch\\miniE.ino.cpp.o"

miniE:403:18: error: expected initializer before 'string_table'

 const char *cons string_table[] PROGMEM = {

                  ^~~~~~~~~~~~

In file included from C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino/Arduino.h:28:0,

                 from C:\Users\Philippe\AppData\Local\Temp\arduino_build_759342\sketch\miniE.ino.cpp:1:

D:\Time Lapse\MiniEngine\miniEngine1-master\miniEngine1-master - Copie\Software\miniE\mE_ui.ino: In function 'void getString(byte, byte)':

mE_ui:995:56: error: 'string_table' was not declared in this scope

   strcpy_P(lines[line_number], (char*) pgm_read_word(&(string_table[buf_number])));

                                                        ^

D:\Time Lapse\MiniEngine\miniEngine1-master\miniEngine1-master - Copie\Software\miniE\mE_ui.ino:995:56: note: suggested alternative: 'Printable'

Plusieurs bibliothèque trouvées pour "RTClib.h"

Utilisé : C:\Users\Philippe\Documents\Arduino\libraries\rtclib

Non utilisé : C:\Users\Philippe\Documents\Arduino\libraries\RTCLib_by_NeiroN

Utilisation de la bibliothèque Wire version 1.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\Wire 

Utilisation de la bibliothèque LiquidCrystal version 1.0.7 dans le dossier: C:\Program Files (x86)\Arduino\libraries\LiquidCrystal 

Utilisation de la bibliothèque EEPROM version 2.0 dans le dossier: C:\Program Files (x86)\Arduino\hardware\arduino\avr\libraries\EEPROM 

Utilisation de la bibliothèque rtclib prise dans le dossier : C:\Users\Philippe\Documents\Arduino\libraries\rtclib (legacy)

exit status 1

expected initializer before 'string_table'


"
expected initializer before 'string_table'
" ???
still something missing ?

to answer an other question I couldn't upload the zip with the 9 files that constitute the program, too large

here is the github adress : GitHub - airiclenz/miniEngine1: An Arduino based single-axis motion-control system for time-lapse photography (the legacy version)

Check carefully the spelling of const. You've got it right in one out of two attempts.

shame on me !!!!
Hurrah! Victory !!!!

clean log !!!!

thank you so much !

Since you are all so nice and competent I have a new question for you but I will put it in a new thread.....

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.