I've been successfully driving the 7 Segment Display with Raspberry Pi Pico and backpack, but tried the alpha4numeric today
https://www.adafruit.com/product/1912 and it works perfectly from an Arduino Uno but garbage is displayed when used with the Pico. Exact same code on both. Photos follow. I checked and have the latest library releases for Adafruit_GFX and Adafruit_LEDBackpack. Thanks!
- Code: Select all | TOGGLE FULL SIZE
#include <Wire.h>
#include <Adafruit_GFX.h>
#include "Adafruit_LEDBackpack.h"
Adafruit_AlphaNum4 alpha4 = Adafruit_AlphaNum4();
void setup()
{
alpha4.begin(0x70);
alpha4.writeDigitAscii(0, 'A');
alpha4.writeDigitAscii(1, 'B');
alpha4.writeDigitAscii(2, 'C');
alpha4.writeDigitAscii(3, 'D');
alpha4.writeDisplay();
}
void loop()
{
delay(500); // wait for a second
}