Arduino_MKRGPS - end()

De-initialize the GPS.

Syntax

GPS.end()

Parameters

None.

Returns

Nothing.

Example

if (!GPS.begin()) {
    Serial.println("Failed to initialize the GPS!");
    while(1);
}

// Read GPS data here...

// Done working with the GPS
GPS.end();

See also