MichaelMeissner
Senior Member+
In your code, I did not see:
which enables the amplifier.
On the prop shield, the following pins are used to enable features:
If you use both the flash memory and the LED buffers (or some other SPI device), you need to set the appropriate pin to LOW when the flash/LEDs are not in use, to allow the other device access.
Code:
pinmode (5, OUTPUT);
digitialWrite (5, HIGH);
which enables the amplifier.
On the prop shield, the following pins are used to enable features:
- Pin 2 -- usable as an interrupt pin if the i2c sensors on the full featured prop shield have new data;
- Pin 5 -- enable amplifier;
- Pin 6 -- enable flash memory SPI calls;
- Pin 7 -- enable LED buffers for ws2812b/apa102 LEDs.
If you use both the flash memory and the LED buffers (or some other SPI device), you need to set the appropriate pin to LOW when the flash/LEDs are not in use, to allow the other device access.