forked from nanoframework/nanoFramework.IoT.Device
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ip5306.cs
391 lines (360 loc) · 12.1 KB
/
Ip5306.cs
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Device.I2c;
using UnitsNet;
namespace Iot.Device.Ip5306
{
/// <summary>
/// IP5306 - Power management device
/// </summary>
public class Ip5306
{
/// <summary>
/// Default IP5306 I2C address
/// </summary>
public const int DefaultI2cAddress = 0xEA;
/// <summary>
/// Possible address as well, used in M5Stack
/// </summary>
public const int SecondaryI2cAddress = 0x75;
private I2cDevice _i2c;
/// <summary>
/// Creates an instance of IP5306
/// </summary>
/// <param name="i2c"></param>
public Ip5306(I2cDevice i2c)
{
_i2c = i2c ?? throw new ArgumentNullException();
}
/// <summary>
/// Button off enabled.
/// False as default.
/// </summary>
public bool ButtonOffEnabled
{
get => (I2cRead(Register.SYS_CTL0) & 0b0000_0001) == 0b0000_0001;
set
{
var buf = I2cRead(Register.SYS_CTL0);
buf = (byte)(buf & ~0b0000_0001);
buf |= (byte)(value ? 0b0000_0001 : 0);
I2cWrite(Register.SYS_CTL0, buf);
}
}
/// <summary>
/// Boost output enabled.
/// True as default.
/// </summary>
public bool BoostOutputEnabled
{
get => (I2cRead(Register.SYS_CTL0) & 0b0000_0010) == 0b0000_0010;
set
{
var buf = I2cRead(Register.SYS_CTL0);
buf = (byte)(buf & ~0b0000_0010);
buf |= (byte)(value ? 0b0000_0010 : 0);
I2cWrite(Register.SYS_CTL0, buf);
}
}
/// <summary>
/// Auto power on enabled.
/// True as default.
/// </summary>
public bool AutoPowerOnEnabled
{
get => (I2cRead(Register.SYS_CTL0) & 0b0000_0100) == 0b0000_0100;
set
{
var buf = I2cRead(Register.SYS_CTL0);
buf = (byte)(buf & ~0b0000_0100);
buf |= (byte)(value ? 0b0000_0100 : 0);
I2cWrite(Register.SYS_CTL0, buf);
}
}
/// <summary>
/// Charger enabled.
/// true as default.
/// </summary>
public bool ChargerEnabled
{
get => (I2cRead(Register.SYS_CTL0) & 0b0001_0000) == 0b0001_0000;
set
{
var buf = I2cRead(Register.SYS_CTL0);
buf = (byte)(buf & ~0b0001_0000);
buf |= (byte)(value ? 0b0001_0000 : 0);
I2cWrite(Register.SYS_CTL0, buf);
}
}
/// <summary>
/// Boost enabled.
/// True as default.
/// </summary>
public bool BoostEnabled
{
get => (I2cRead(Register.SYS_CTL0) & 0b0010_0000) == 0b0010_0000;
set
{
var buf = I2cRead(Register.SYS_CTL0);
buf = (byte)(buf & ~0b0010_0000);
buf |= (byte)(value ? 0b0010_0000 : 0);
I2cWrite(Register.SYS_CTL0, buf);
}
}
/// <summary>
/// Low power off enabled.
/// True as default.
/// </summary>
public bool LowPowerOffEnabled
{
get => (I2cRead(Register.SYS_CTL1) & 0b0000_0001) == 0b0000_0001;
set
{
var buf = I2cRead(Register.SYS_CTL1);
buf = (byte)(buf & ~0b0000_0001);
buf |= (byte)(value ? 0b0000_0001 : 0);
I2cWrite(Register.SYS_CTL1, buf);
}
}
/// <summary>
/// Bosst when V in unplugges enabled.
/// True as default.
/// </summary>
public bool BoostWhenVinUnpluggedEnabled
{
get => (I2cRead(Register.SYS_CTL1) & 0b0000_0100) == 0b0000_0100;
set
{
var buf = I2cRead(Register.SYS_CTL1);
buf = (byte)(buf & ~0b0000_0100);
buf |= (byte)(value ? 0b0000_0100 : 0);
I2cWrite(Register.SYS_CTL1, buf);
}
}
/// <summary>
/// Short press to switch boost enabled.
/// False as default.
/// </summary>
public bool ShortPressToSwitchBosst
{
get => (I2cRead(Register.SYS_CTL1) & 0b0010_0000) == 0b0010_0000;
set
{
var buf = I2cRead(Register.SYS_CTL1);
buf = (byte)(buf & ~0b0010_0000);
buf |= (byte)(value ? 0b0010_0000 : 0);
I2cWrite(Register.SYS_CTL1, buf);
}
}
/// <summary>
/// Flash light behavior.
/// Defautl to double click.
/// </summary>
public ButtonPress FlashLightBehavior
{
get => (ButtonPress)(I2cRead(Register.SYS_CTL1) & 0b0100_0000);
set
{
var buf = I2cRead(Register.SYS_CTL1);
buf = (byte)(buf & ~0b0100_0000);
buf |= (byte)(value);
I2cWrite(Register.SYS_CTL1, buf);
}
}
/// <summary>
/// Switch off boost behavior.
/// Default to long press.
/// </summary>
public ButtonPress SwitchOffBoostBehavior
{
// Warning, the button setu is inverted compare to the previous one
get => ((I2cRead(Register.SYS_CTL1) & 0b1000_0000) == 1) ? ButtonPress.Doubleclick : ButtonPress.LongPress;
set
{
var buf = I2cRead(Register.SYS_CTL1);
buf = (byte)(buf & ~0b1000_0000);
// Button here is inverted compare to previous case
buf |= (byte)(value == ButtonPress.LongPress ? ButtonPress.Doubleclick : ButtonPress.LongPress);
I2cWrite(Register.SYS_CTL1, buf);
}
}
/// <summary>
/// Light duty shutdown time.
/// Default to 8 seconds.
/// </summary>
public LightDutyShutdownTime LightDutyShutdownTime
{
get => (LightDutyShutdownTime)(I2cRead(Register.SYS_CTL2) & 0b0000_1100);
set
{
var buf = I2cRead(Register.SYS_CTL2);
buf = (byte)(buf & ~0b0000_1100);
buf |= (byte)(value);
I2cWrite(Register.SYS_CTL2, buf);
}
}
/// <summary>
/// Charging cut off voltage.
/// Default to 4.185 Volt.
/// </summary>
public ChargingCutOffVoltage ChargingCuttOffVoltage
{
get => (ChargingCutOffVoltage)(I2cRead(Register.Charger_CTL0) & 0b0000_0011);
set
{
var buf = I2cRead(Register.Charger_CTL0);
buf = (byte)(buf & ~0b0000_0011);
buf |= (byte)(value);
I2cWrite(Register.Charger_CTL0, buf);
}
}
/// <summary>
/// Charging cut off current.
/// Default to 400 mA.
/// </summary>
public ChargingCutOffCurrent ChargingCutOffCurrent
{
get => (ChargingCutOffCurrent)(I2cRead(Register.Charger_CTL1) & 0b1100_0000);
set
{
var buf = I2cRead(Register.Charger_CTL1);
buf = (byte)(buf & ~0b1100_0000);
buf |= (byte)(value);
I2cWrite(Register.Charger_CTL1, buf);
}
}
/// <summary>
/// Charging under voltage.
/// Default to 4.7 Volt.
/// </summary>
public ChargingUnderVoltage ChargingUnderVoltage
{
get => (ChargingUnderVoltage)(I2cRead(Register.Charger_CTL1) & 0b0001_1100);
set
{
var buf = I2cRead(Register.Charger_CTL1);
buf = (byte)(buf & ~0b0001_1100);
buf |= (byte)(value);
I2cWrite(Register.Charger_CTL1, buf);
}
}
/// <summary>
/// Charging battery voltage.
/// Default to 4.2 Volt.
/// </summary>
public ChargingBatteryVoltage ChargingBatteryVoltage
{
get => (ChargingBatteryVoltage)(I2cRead(Register.Charger_CTL2) & 0b0000_1100);
set
{
var buf = I2cRead(Register.Charger_CTL1);
buf = (byte)(buf & ~0b0000_1100);
buf |= (byte)(value);
I2cWrite(Register.Charger_CTL1, buf);
}
}
/// <summary>
/// Constant charging voltage.
/// Default to 14 milli Volt.
/// </summary>
public ConstantChargingVoltage ConstantChargingVoltage
{
get => (ConstantChargingVoltage)(I2cRead(Register.Charger_CTL2) & 0b0000_0011);
set
{
var buf = I2cRead(Register.Charger_CTL1);
buf = (byte)(buf & ~0b0000_0011);
buf |= (byte)(value);
I2cWrite(Register.Charger_CTL1, buf);
}
}
/// <summary>
/// Charging loop selection.
/// Defautl to V in.
/// </summary>
public ChargingLoopSelection ChargingLoopSelection
{
get => (ChargingLoopSelection)(I2cRead(Register.Charger_CTL3) & 0b0000_1000);
set
{
var buf = I2cRead(Register.Charger_CTL1);
buf = (byte)(buf & ~0b0000_1000);
buf |= (byte)(value);
I2cWrite(Register.Charger_CTL1, buf);
}
}
/// <summary>
/// Charging current.
/// </summary>
/// <remarks>Typical valut is between 50 and 3150 milli Ampere. Values are capted to 50 for anything under or 3150 for anything higher.</remarks>
public ElectricCurrent ChargingCurrent
{
get
{
var buf = I2cRead(Register.CHG_DIG_CTL0) & 0b0001_1111;
// I=0.05+b0*0.1+b1*0.2+b2*0.4+b3*0.8+b4*1.6A
// I = buff * 100 + 50 mA
return ElectricCurrent.FromMilliamperes(buf * 100 + 50);
}
set
{
// Cap the values to 0 or 3100 mA
var currentmA = value.Milliamperes - 50;
if (currentmA < 0)
{
currentmA = 0;
}
else if (currentmA > 3100)
{
currentmA = 3100;
}
currentmA = currentmA / 100;
var buf = I2cRead(Register.CHG_DIG_CTL0);
buf = (byte)(buf & ~0b0001_1111);
buf |= (byte)currentmA;
I2cWrite(Register.CHG_DIG_CTL0, buf);
}
}
/// <summary>
/// True if the battery is charging.
/// </summary>
public bool IsCharging
{
get => (I2cRead(Register.REG_READ0) & 0b0000_1000) == 0b0000_1000;
}
/// <summary>
/// True if the battery is full.
/// </summary>
public bool IsBatteryFull
{
get => (I2cRead(Register.REG_READ1) & 0b0000_1000) == 0b0000_1000;
}
/// <summary>
/// True if the output is loaded to high.
/// </summary>
public bool IsOutputLoadHigh
{
get => (I2cRead(Register.REG_READ2) & 0b0000_0100) == 0b0000_0100;
}
/// <summary>
/// Gets the button status.
/// </summary>
public ButtonPressed GetButtonStatus()
{
var buf = I2cRead(Register.REG_READ3);
I2cWrite(Register.REG_READ3, buf);
return (ButtonPressed)(buf & 0b0000_0111);
}
private void I2cWrite(Register reg, byte data)
{
SpanByte writeBuffer = new byte[2] { (byte)reg, data };
_i2c.Write(writeBuffer);
}
private byte I2cRead(Register reg)
{
_i2c.WriteByte((byte)reg);
return _i2c.ReadByte();
}
}
}