资源简介
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
- 上一篇:操作系统-吃水果问题
- 下一篇:装饰者模式结合模板方法模式实现奶茶商店
相关资源
- ADNS-3080光流传感器测试程序Arduino
- STM32 DS3231驱动.zip
- EESkill NRF24L01 无线模块用户手册
- Arduino nano 工程文件
- Arduino教程 Lesson 之--自制风扇
- 基于Arduino的智能环境监控系统设计
- 基于Arduino和Machtalk的温棚环境监测系
- arduino pca9685多舵机同时控制案例
- arduino技术内幕
- Arduino电子设计实战指南.零基础篇_超
- 物联网智能家居平台DIY:ARDUINO 物联网
- 实验1.zip arduino跑马灯led灯实验,串口
- opencat所有资料.zip
- arduino主机,stm8从机。I2C测试 。每次
- DS18B20_Serial_println.ino
- ps2手柄arduino库文件
- 1602lcd液晶屏参数详细介绍
- 基于手机蓝牙的arduino遥控小车
- arduino中的can库函数
- 密码+指纹锁资料包.rar
- 贝壳物联arduino esp8266 demo版本
- HMC5883L罗盘指南针模块库文件及中英文
- arduino 小贱钟源码及教程
- Atom-TMC2208Pilot在Arduino上运行的应用程
- 写字机制作方案
- PID-增量式PID和位置式PID算法实现和
- Building Wireless Sensor Networks Using Arduin
- vc控制Arduino,实现串口通信
- Arduino入门经典
- Arduino所有库.zip
评论
共有 条评论