Serial Class Instance question

Hi All!

Quick question:

I am trying to have an instance or a pointer the Serial1 class… What I want is to talk to GPS instead of Serial.

Is this possible/recommended?
Or should I use a Macro?

@frlobo, I tend to use a #define for situations like that: #define GPS Serial1 for example.

1 Like

Good point. That’s what I will use then :slight_smile: