Why does this code compile properly, but make my Core flash red?

Please see the earlier posting

As per this post, Serial1.begin() before calling setup() caused issues.. Please see the specific link:

If you move the initialization that happens in the constructor

SeeedRFID RFID(RFID_RX_PIN, RFID_TX_PIN);

to the setup(), this may work.The constructor function may need to be duplicated as an init() method and called in setup()

2 Likes