Skip to content

update for magtag with ssd1680z chip #3086

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions MagTag/MagTag_Arduino_Demos/shipping_demo/shipping_demo.ino
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,20 @@
#include "magtaglogo.h"

Adafruit_NeoPixel intneo = Adafruit_NeoPixel(4, PIN_NEOPIXEL, NEO_GRB + NEO_KHZ800);
ThinkInk_290_Grayscale4_T5 display(EPD_DC, EPD_RESET, EPD_CS, -1, -1);

// older pre-2025 magtag
//ThinkInk_290_Grayscale4_T5 display(EPD_DC, EPD_RESET, EPD_CS, -1, -1);
// magtag with SSD1680Z chipset
ThinkInk_290_Grayscale4_EAAMFGN display(EPD_DC, EPD_RESET, EPD_CS, -1, -1);

Adafruit_LIS3DH lis = Adafruit_LIS3DH();

uint8_t j = 0;
void setup() {
Serial.begin(115200);
//while (!Serial) { delay(10); }
delay(100);
Serial.println("Adafruit EPD Portal demo");
Serial.println("Adafruit MagTag 2.9\" demo");

intneo.begin();
intneo.setBrightness(50);
Expand Down
Loading