-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathPCA9685.cpp
74 lines (59 loc) · 2.23 KB
/
PCA9685.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
/* PCA9685 LED library for Arduino
Copyright (C) 2012 Kasper Skårhøj <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "PCA9685.h"
PCA9685::PCA9685() {}
void PCA9685::begin(int i2cAddress) {
_i2cAddress = PCA9685_I2C_BASE_ADDRESS | (i2cAddress & B00111111);
}
void PCA9685::init() {
delay(1);
writeRegister(PCA9685_MODE1, (byte)0x01); // reset the device
delay(1);
writeRegister(PCA9685_MODE1, (byte)0xa1); // set up for auto increment
writeRegister(PCA9685_MODE2, (byte)0x10); // set to output
}
void PCA9685::setLEDOn(int ledNumber) {
writeLED(ledNumber, 0x1000, 0);
}
void PCA9685::setLEDOff(int ledNumber) {
writeLED(ledNumber, 0, 0x1000);
}
void PCA9685::setLEDDimmed(int ledNumber, byte amount) { // Amount from 0-100 (off-on)
if (amount==0) {
setLEDOff(ledNumber);
} else if (amount>=100) {
setLEDOn(ledNumber);
} else {
int randNumber = (int)random(4096); // Randomize the phaseshift to distribute load. Good idea? Hope so.
writeLED(ledNumber, randNumber, (int)(amount*41+randNumber) & 0xFFF);
}
}
void PCA9685::writeLED(int ledNumber, word LED_ON, word LED_OFF) { // LED_ON and LED_OFF are 12bit values (0-4095); ledNumber is 0-15
if (ledNumber >=0 && ledNumber <= 15) {
Wire.beginTransmission(_i2cAddress);
Wire.write(PCA9685_LED0 + 4*ledNumber);
Wire.write(lowByte(LED_ON));
Wire.write(highByte(LED_ON));
Wire.write(lowByte(LED_OFF));
Wire.write(highByte(LED_OFF));
Wire.endTransmission();
}
}
//PRIVATE
void PCA9685::writeRegister(int regAddress, byte data) {
Wire.beginTransmission(_i2cAddress);
Wire.write(regAddress);
Wire.write(data);
Wire.endTransmission();
}