Arduino 1602如何添加Wire这个头文件
发布网友
发布时间:2022-09-25 02:31
我来回答
共1个回答
热心网友
时间:2023-07-20 23:20
开个 google 翻译,或者 必应翻译 最多1~2钟就能看懂.
给你一个 DS1307 的例子. 前提是DS1307 内已经有设好了时间.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include <Wire.h>
#define DS1307_I2C_ADDRESS 0x68
#define REG_SEC 0x00
#define REG_MIN 0x01
#define REG_HOUR 0x02
#define REG_DAY 0x03
#define REG_DATE 0x04
#define REG_MON 0x05
#define REG_YEAR 0x06
#define REG_CTL 0x07
#define REG_RAM_START 0x08
#define REG_RAM_END 0x3F
void setup() {
Wire.begin(); // 开启 I2C 总线(主设备)
Serial.begin(9600);
}
void loop() {
Wire.beginTransmission(DS1307_I2C_ADDRESS); // 开启发送
Wire.write(REG_SEC); // 写入 DS1307 秒地址
Wire.endTransmission(); // 结束发送
Wire.requestFrom(DS1307_I2C_ADDRESS, 1); // 请求 DS1307 一个字节
uint8_t s;
if(Wire.available() == 1) { // 可否获取1个数据
s = bcd2dec(Wire.read() & 0x7F); // 读取 DS1307 秒
Serial.println(s);
}
delay(1000);
}
uint8_t dec2bcd(uint8_t dec) {
return ((dec/10 * 16) + (dec % 10));
}
uint8_t bcd2dec(uint8_t bcd) {
return ((bcd/16 * 10) + (bcd % 16));
}