Closed todd-herbert closed 2 months ago
@eiiot I think this might be something different than issue #12; very keen to catch it though! I'm not immediately able to reproduce this one here. Can I ask for a bit more info?
I'm using v1.1. My code was just the tutorial code, I think?
#include "heltec-eink-modules.h"
EInkDisplay_WirelessPaperV1_1 display;
void setup() {
display.print("Hello, World!");
display.update();
}
Ah, Arduino insists on also having a loop()
method, even if it's empty.
#include "heltec-eink-modules.h"
EInkDisplay_WirelessPaperV1_1 display;
void setup() {
display.print("Hello, World!");
display.update();
}
void loop() {
}
I'll update the readme to make that clearer!
That fixed it, thanks!
Originally posted by @eiiot in https://github.com/todd-herbert/heltec-eink-modules/issues/12#issuecomment-2316538861