gpsdate

ivanmason/gps-receiver/gpsdate

No description
gpsdate
@/gpsdate
DEV@/neo6mv2-device
UPDpulse
gpsdate
DAY
MONTH
YEAR
DEV
UPD
YEARnumber
MONTHnumber
DAYnumber
To use the node in your project you should have the ivanmason/gps-receiver library installed. Use the “File → Add Library” menu item in XOD IDE if you don’t have it yet. See Using libraries for more info.

C++ implementation

struct State {
};

{{ GENERATED_CODE }}

void evaluate(Context ctx) {
       if (!isInputDirty<input_UPD>(ctx))
        return;
   
    auto gps = getValue<input_DEV>(ctx);

    TinyGPSDate date = gps->date;
   
    
    if (date.isValid())
  {
        emitValue<output_DAY>(ctx, date.day());
        emitValue<output_MONTH>(ctx, date.month());
        emitValue<output_YEAR>(ctx, date.year());
  }
  

}