We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c7f824 commit bf162b8Copy full SHA for bf162b8
README.md
@@ -61,9 +61,11 @@ func main() {
61
62
// Create driver for Adafruit 15x7 CharliePlex LED Matrix FeatherWing
63
// (CharlieWing): https://www.adafruit.com/product/3163
64
- ledMatrix, err := is31fl3731.NewAdafruitCharlieWing15x7(bus, I2CAddress)
+ ledMatrix := is31fl3731.NewAdafruitCharlieWing15x7(bus, I2CAddressLEDMatrix)
65
+
66
+ err = ledMatrix.Configure()
67
if err != nil {
- println("could not create driver:", err)
68
+ println("could not configure led driver:", err)
69
return
70
}
71
0 commit comments