资源简介
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
- 上一篇:操作系统-吃水果问题
- 下一篇:装饰者模式结合模板方法模式实现奶茶商店
相关资源
- u8glib_arduino_v1.13.zip
- 基于arduino激光电子琴的设计与制作
- arduino智能跟随小车源程序
- ADPS9960在Arduino上实现任意IO的IIC
- 基于Arduino AT指令实现esp8266通讯
- Arduino Mega2560硬件设计文件
- cpp-基于ArduinoMEGA2560的智能物流小车工
- OneWire和DallasTemperature库文件
- arduino uno + ESP8266 搭建的天气预报平台
- Arduino-malduino-password-grabber.zip
- 写字机器人
- Arduino主板烧录器---avrdudess.rar
- 基于Arduino的MH-Z14二氧化碳气体检测液
- Arduino DS3231函数库
- arduino控制180度舵机和360度舵机
- Arduino程序设计-智能水杯源码及报告
- Proteus仿真Arduino控制OLED1306
- 基于arduino mega2560的步进电机控制
- arduino的i2c库 完整版
- Arduino从入门到精通全课时教程分享
- 两个Arduino库-Blynk-BlynkESP8266.zip
- arduino实验の互动式儿童玩具
- Arduino STM32 平衡小车之家平衡小车源码
- Timo_ws2812_control.zip
- 基于arduino的光电鼠标A3050数据读取
- ArduinoJson
- arduino通过485读取温度传感器驱动淘晶
- Arduino实现可手动绘制路线的智能小车
- ArduinoJson-5.13.5.rar
- Proteus仿真:arduino通过SPI驱动lcd1602(
评论
共有 条评论