|
@@ -87,7 +87,7 @@ TUBE_CALLBACK(3)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-void StaggerPwmOutput() {
|
|
+void ComputePwmOffsets() {
|
|
int validOutputs = 0;
|
|
int validOutputs = 0;
|
|
int totalOnTime = 0;
|
|
int totalOnTime = 0;
|
|
int lastPwmEnd = 0;
|
|
int lastPwmEnd = 0;
|
|
@@ -115,9 +115,15 @@ void StaggerPwmOutput() {
|
|
|
|
|
|
for (int i = 0; i < NUM_TUBES; i++) {
|
|
for (int i = 0; i < NUM_TUBES; i++) {
|
|
for (int j = 0; j < NUM_DIGITS; j++) {
|
|
for (int j = 0; j < NUM_DIGITS; j++) {
|
|
- if (Tubes[i].Digits[j].Value != PCA9685_Min_Brightness &&
|
|
+ if (Tubes[i].Digits[j].Value == PCA9685_Min_Brightness) {
|
|
- Tubes[i].Digits[j].Value != PCA9685_Max_Brightness) {
|
|
+ Tubes[i].Digits[j].PwmStart = 0;
|
|
-
|
|
+ Tubes[i].Digits[j].PwmEnd = 0;
|
|
|
|
+ }
|
|
|
|
+ else if (Tubes[i].Digits[j].Value == PCA9685_Max_Brightness) {
|
|
|
|
+ Tubes[i].Digits[j].PwmStart = 0;
|
|
|
|
+ Tubes[i].Digits[j].PwmEnd = PCA9685_Max_Brightness;
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
Tubes[i].Digits[j].PwmStart = lastPwmEnd;
|
|
Tubes[i].Digits[j].PwmStart = lastPwmEnd;
|
|
Tubes[i].Digits[j].PwmEnd = lastPwmEnd + Tubes[i].Digits[j].Value;
|
|
Tubes[i].Digits[j].PwmEnd = lastPwmEnd + Tubes[i].Digits[j].Value;
|
|
lastPwmEnd = Tubes[i].Digits[j].PwmEnd;
|
|
lastPwmEnd = Tubes[i].Digits[j].PwmEnd;
|
|
@@ -125,7 +131,15 @@ void StaggerPwmOutput() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if (Dot.Value != PCA9685_Min_Brightness && Dot.Value != PCA9685_Max_Brightness) {
|
|
+ if (Dot.Value == PCA9685_Min_Brightness) {
|
|
|
|
+ Dot.PwmStart = 0;
|
|
|
|
+ Dot.PwmEnd = 0;
|
|
|
|
+ }
|
|
|
|
+ else if (Dot.Value == PCA9685_Max_Brightness) {
|
|
|
|
+ Dot.PwmStart = 0;
|
|
|
|
+ Dot.PwmEnd = PCA9685_Max_Brightness;
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
Dot.PwmStart = lastPwmEnd;
|
|
Dot.PwmStart = lastPwmEnd;
|
|
Dot.PwmEnd = lastPwmEnd + Dot.Value;
|
|
Dot.PwmEnd = lastPwmEnd + Dot.Value;
|
|
lastPwmEnd = Dot.PwmEnd;
|
|
lastPwmEnd = Dot.PwmEnd;
|
|
@@ -134,23 +148,37 @@ void StaggerPwmOutput() {
|
|
}
|
|
}
|
|
else {
|
|
else {
|
|
|
|
|
|
- int overlap = totalOnTime / (validOutputs - 1);
|
|
+ int overlap = (totalOnTime - PCA9685_Max_Brightness) / (validOutputs - 1);
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < NUM_TUBES; i++) {
|
|
for (int i = 0; i < NUM_TUBES; i++) {
|
|
for (int j = 0; j < NUM_DIGITS; j++) {
|
|
for (int j = 0; j < NUM_DIGITS; j++) {
|
|
- if (Tubes[i].Digits[j].Value != PCA9685_Min_Brightness &&
|
|
+ if (Tubes[i].Digits[j].Value == PCA9685_Min_Brightness) {
|
|
- Tubes[i].Digits[j].Value != PCA9685_Max_Brightness) {
|
|
+ Tubes[i].Digits[j].PwmStart = 0;
|
|
-
|
|
+ Tubes[i].Digits[j].PwmEnd = 0;
|
|
- Tubes[i].Digits[j].PwmStart = (lastPwmEnd == 0) ? 0 : lastPwmEnd - overlap;
|
|
+ }
|
|
|
|
+ else if (Tubes[i].Digits[j].Value == PCA9685_Max_Brightness) {
|
|
|
|
+ Tubes[i].Digits[j].PwmStart = 0;
|
|
|
|
+ Tubes[i].Digits[j].PwmEnd = PCA9685_Max_Brightness;
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ Tubes[i].Digits[j].PwmStart = (lastPwmEnd - overlap < 0) ? 0 : lastPwmEnd - overlap;
|
|
Tubes[i].Digits[j].PwmEnd = Tubes[i].Digits[j].PwmStart + Tubes[i].Digits[j].Value;
|
|
Tubes[i].Digits[j].PwmEnd = Tubes[i].Digits[j].PwmStart + Tubes[i].Digits[j].Value;
|
|
lastPwmEnd = Tubes[i].Digits[j].PwmEnd;
|
|
lastPwmEnd = Tubes[i].Digits[j].PwmEnd;
|
|
Tubes[i].Digits[j].Updated = true;
|
|
Tubes[i].Digits[j].Updated = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if (Dot.Value != PCA9685_Min_Brightness && Dot.Value != PCA9685_Max_Brightness) {
|
|
+ if (Dot.Value == PCA9685_Min_Brightness) {
|
|
- Dot.PwmStart = (lastPwmEnd == 0) ? 0 : lastPwmEnd - overlap;
|
|
+ Dot.PwmStart = 0;
|
|
|
|
+ Dot.PwmEnd = 0;
|
|
|
|
+ }
|
|
|
|
+ else if (Dot.Value == PCA9685_Max_Brightness) {
|
|
|
|
+ Dot.PwmStart = 0;
|
|
|
|
+ Dot.PwmEnd = PCA9685_Max_Brightness;
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ Dot.PwmStart = (lastPwmEnd - overlap < 0) ? 0 : lastPwmEnd - overlap;
|
|
Dot.PwmEnd = Dot.PwmStart + Dot.Value;
|
|
Dot.PwmEnd = Dot.PwmStart + Dot.Value;
|
|
lastPwmEnd = Dot.PwmEnd;
|
|
lastPwmEnd = Dot.PwmEnd;
|
|
Dot.Updated = true;
|
|
Dot.Updated = true;
|
|
@@ -329,28 +357,18 @@ int main() {
|
|
if (RefreshTick) {
|
|
if (RefreshTick) {
|
|
RefreshTick = false;
|
|
RefreshTick = false;
|
|
|
|
|
|
- StaggerPwmOutput();
|
|
+ ComputePwmOffsets();
|
|
for (int i = 0; i < NUM_TUBES; i++) {
|
|
for (int i = 0; i < NUM_TUBES; i++) {
|
|
for (int j = 0; j < NUM_DIGITS; j++) {
|
|
for (int j = 0; j < NUM_DIGITS; j++) {
|
|
if (Tubes[i].Digits[j].Updated) {
|
|
if (Tubes[i].Digits[j].Updated) {
|
|
- if (Tubes[i].Digits[j].Value == PCA9685_Min_Brightness ||
|
|
+ PCA9685_SetDigitPwm(i, j, Tubes[i].Digits[j].PwmStart, Tubes[i].Digits[j].PwmEnd);
|
|
- Tubes[i].Digits[j].Value == PCA9685_Max_Brightness) {
|
|
|
|
-
|
|
|
|
- PCA9685_SetDigit(i, j, Tubes[i].Digits[j].Value);
|
|
|
|
- } else {
|
|
|
|
- PCA9685_SetDigitPwm(i, j, Tubes[i].Digits[j].PwmStart, Tubes[i].Digits[j].PwmEnd);
|
|
|
|
- }
|
|
|
|
Tubes[i].Digits[j].Updated = false;
|
|
Tubes[i].Digits[j].Updated = false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
if (Dot.Updated) {
|
|
if (Dot.Updated) {
|
|
- if (Dot.Value == PCA9685_Min_Brightness || Dot.Value == PCA9685_Max_Brightness) {
|
|
+ PCA9685_SetDotPwm(Dot.PwmStart, Dot.PwmEnd);
|
|
- PCA9685_SetDot(Dot.Value);
|
|
|
|
- } else {
|
|
|
|
- PCA9685_SetDotPwm(Dot.PwmStart, Dot.PwmEnd);
|
|
|
|
- }
|
|
|
|
Dot.Updated = false;
|
|
Dot.Updated = false;
|
|
}
|
|
}
|
|
}
|
|
}
|