Ignore:
Timestamp:
Mar 28, 2016, 2:09:46 PM (8 years ago)
Author:
ertl-honda
Message:

ライブラリを Arduino IDE 1.7.9 にupdate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • rtos_arduino/trunk/arduino_lib/libraries/RTC/src/RTCInt.h

    r136 r175  
    22  RTC library for Arduino Zero.
    33  Copyright (c) 2015 Arduino LLC. All right reserved.
    4 
    54  This library is free software; you can redistribute it and/or
    65  modify it under the terms of the GNU Lesser General Public
    76  License as published by the Free Software Foundation; either
    87  version 2.1 of the License, or (at your option) any later version.
    9 
    108  This library is distributed in the hope that it will be useful,
    119  but WITHOUT ANY WARRANTY; without even the implied warranty of
    1210  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
    1311  Lesser General Public License for more details.
    14 
    1512  You should have received a copy of the GNU Lesser General Public
    1613  License along with this library; if not, write to the Free Software
     
    3835#define POST_MERIDIAN 1
    3936
     37//Parameter for oscillatorType - M0 only
     38#define HIGH_PRECISION 0
     39#define LOW_POWER 1
     40
    4041#include "Arduino.h"
    4142
     
    6061  RTCInt() {};
    6162 
    62   TIME local_time;
    63   DATE local_date;
     63  TIME time;
     64  DATE date;
    6465 
     66  void begin(bool timeMode, int oscillatorType);
    6567  void begin(bool timeMode);
    6668 
Note: See TracChangeset for help on using the changeset viewer.