• 大小: 494KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-18
  • 语言: 其他
  • 标签: arduino  DS3231  1602LCD  

资源简介

Arduino时钟,可以显示时间日期和温度,DS3231+DS18B20+1602LCD,串口修改时间,时间非常准,

资源截图

代码片段和文件信息

/*
  EEPROM.cpp - EEPROM library
  Copyright (c) 2006 David A. Mellis.  All right reserved.

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

  This library 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
  Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public
  License along with this library; if not write to the Free Software
  Foundation Inc. 51 Franklin St Fifth Floor Boston MA  02110-1301  USA
*/

/******************************************************************************
 * Includes
 ******************************************************************************/

#include 
#include “Arduino.h“
#include “EEPROM.h“

/******************************************************************************
 * Definitions
 ******************************************************************************/

/******************************************************************************
 * Constructors
 ******************************************************************************/

/******************************************************************************
 * User API
 ******************************************************************************/

uint8_t EEPROMClass::read(int address)
{
return eeprom_read_byte((unsigned char *) address);
}

void EEPROMClass::write(int address uint8_t value)
{
eeprom_write_byte((unsigned char *) address value);
}

EEPROMClass EEPROM;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-05-30 22:33  DS3231\
     文件      214740  2010-10-08 03:09  DS3231\24C32.pdf
     目录           0  2013-05-31 15:36  DS3231\AT24C32_TEST\
     文件        1816  2013-03-11 15:29  DS3231\AT24C32_TEST\EEPROM.cpp
     文件         998  2013-03-11 15:29  DS3231\AT24C32_TEST\EEPROM.h
     目录           0  2013-05-31 15:43  DS3231\AT24C32_TEST\Examples\
     目录           0  2013-06-03 19:45  DS3231\AT24C32_TEST\Examples\AT24C32_TEST\
     文件        2359  2013-05-31 15:36  DS3231\AT24C32_TEST\Examples\AT24C32_TEST\AT24C32_TEST.ino
     文件         459  2013-03-11 15:29  DS3231\AT24C32_TEST\keywords.txt
     文件        7529  2018-05-30 22:33  DS3231\DS3231.ino
     文件      369675  2013-04-14 10:59  DS3231\DS3231.pdf
     目录           0  2013-05-31 15:41  DS3231\DS3231_TEST\
     文件       16274  2012-02-08 22:56  DS3231\DS3231_TEST\DS3231.cpp
     文件        5161  2012-02-08 22:51  DS3231\DS3231_TEST\DS3231.h
     目录           0  2013-05-31 15:43  DS3231\DS3231_TEST\Examples\
     目录           0  2013-06-03 19:46  DS3231\DS3231_TEST\Examples\DS3231_TEST\
     文件        4647  2013-05-31 15:41  DS3231\DS3231_TEST\Examples\DS3231_TEST\DS3231_TEST.ino
     文件         243  2012-02-08 23:05  DS3231\DS3231_TEST\Readme.txt
     文件         548  2012-02-07 11:17  DS3231\DS3231_TEST\keywords.txt
     文件       55985  2013-05-31 15:45  DS3231\Protel Schematic.pdf

评论

共有 条评论