-
Notifications
You must be signed in to change notification settings - Fork 5
/
AT24Cxx.cpp
176 lines (125 loc) · 2.84 KB
/
AT24Cxx.cpp
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
* File: AT24Cxx.cpp
* Author: Manjunath CV
*
* Created on February 16, 2016, 12:19 AM
*/
#include <Wire.h>
#include "AT24Cxx.h"
AT24Cxx::AT24Cxx(uint8_t i2c_address)
{
Wire.begin();
this->i2c_address = i2c_address;
}
AT24Cxx::AT24Cxx(uint8_t i2c_address, uint32_t eeprom_size)
{
Wire.begin();
this->i2c_address = i2c_address;
this->eeprom_size = eeprom_size;
}
uint8_t AT24Cxx::read(uint16_t address)
{
uint8_t first,second,data;
Wire.beginTransmission(i2c_address);
first = highByte(address);
second = lowByte(address);
Wire.write(first); //First Word Address
Wire.write(second); //Second Word Address
Wire.endTransmission();
delay(10);
Wire.requestFrom(i2c_address, 1);
delay(10);
data = Wire.read();
delay(10);
return data;
}
void AT24Cxx::write(uint16_t address, uint8_t value)
{
uint8_t first,second;
Wire.beginTransmission(i2c_address);
first = highByte(address);
second = lowByte(address);
Wire.write(first); //First Word Address
Wire.write(second); //Second Word Address
Wire.write(value);
delay(10);
Wire.endTransmission();
delay(10);
}
/*
Not yet Ready!
void AT24Cxx::write(uint16_t address, uint8_t ptr, uint8_t size)
{
uint8_t first,second,value;
Wire.beginTransmission(i2c_address);
for(int i = 0; i < size ; i++)
{
first = highByte(address);
second = lowByte(address);
Wire.write(first); //First Word Address
Wire.write(second); //Second Word Address
value = *ptr++;
Wire.write(value);
delay(10);
address++;
}
Wire.endTransmission();
delay(10);
}
*/
void AT24Cxx::update(uint16_t address, uint8_t value)
{
uint8_t first,second,data;
Wire.beginTransmission(i2c_address);
first = highByte(address);
second = lowByte(address);
Wire.write(first); //First Word Address
Wire.write(second); //Second Word Address
Wire.endTransmission();
delay(10);
Wire.requestFrom(i2c_address, 1);
delay(10);
data = Wire.read();
delay(10);
/* Checking Value */
if (data != value)
{
/* Writing Value */
Wire.beginTransmission(i2c_address);
first = highByte(address);
second = lowByte(address);
Wire.write(first); //First Word Address
Wire.write(second); //Second Word Address
Wire.write(value);
delay(10);
Wire.endTransmission();
delay(10);
}
}
uint32_t AT24Cxx::length()
{
return this->eeprom_size * 1024;
}
// Used to access
int AT24Cxx::operator[](uint16_t address)
{
uint8_t first,second,data;
Wire.beginTransmission(i2c_address);
first = highByte(address);
second = lowByte(address);
Wire.write(first); //First Word Address
Wire.write(second); //Second Word Address
Wire.endTransmission();
delay(10);
Wire.requestFrom(i2c_address, 1);
delay(10);
data = Wire.read();
delay(10);
return data;
}
/*
AT24Cxx::AT24Cxx(const AT24Cxx& orig) {
}
AT24Cxx::~AT24Cxx() {
}
*/