We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4669614 + 9d0664a commit 607a6a4Copy full SHA for 607a6a4
ledmatrix/src/main.rs
@@ -40,8 +40,9 @@ const SLEEP_TIMEOUT: u64 = 60_000_000;
40
const MAX_CURRENT: usize = 500;
41
42
/// Maximum brightness out of 255
43
-/// Set to 94 because that results in just below 500mA current draw.
44
-const MAX_BRIGHTNESS: u8 = 94;
+/// On HW Rev 1 from BizLink set to 94 to have just below 500mA current draw.
+/// BizLink HW Rev 2 has a larger current limiting resistor
45
+const MAX_BRIGHTNESS: u8 = 255;
46
47
// TODO: Doesn't work yet, unless I panic right at the beginning of main
48
//#[cfg(not(debug_assertions))]
0 commit comments