• Witaj na Forum Arduino Polska! Zapraszamy do rejestracji!
  • Znajdziesz tutaj wiele informacji na temat hardware / software.
Witaj! Logowanie Rejestracja


Ocena wątku:
  • 0 głosów - średnia: 0
  • 1
  • 2
  • 3
  • 4
  • 5
Brak danych z linksprite GPS V3 Shield
#4
Cytat:Jak używasz jakiegoś kodu, który nie działa tak jak oczekujesz to go tu załączaj. Jeśli używanych bibliotek nie ma standardowo w Arduino IDE to też je wrzucaj. O czym mamy sobie pogadać jak nie ma Twojego programu?

Korzystałem z biblioteki TinyGPS++.

Kod:
#include <TinyGPS++.h>
#include <SoftwareSerial.h>



// The TinyGPS++ object
TinyGPSPlus gps;

// The serial connection to the GPS device
SoftwareSerial ss(1, 0);

void setup()
{
 Serial.begin(115200);

 Serial.println(F("DeviceExample.ino"));
 Serial.println(F("A simple demonstration of TinyGPS++ with an attached GPS module"));
 Serial.print(F("Testing TinyGPS++ library v. ")); Serial.println(TinyGPSPlus::libraryVersion());
 Serial.println(F("by Mikal Hart"));
 Serial.println();
}

void loop()
{
 // This sketch displays information every time a new sentence is correctly encoded.

 if (millis() > 5000 && gps.charsProcessed() < 10)
 {
   Serial.println(F("No GPS detected: check wiring."));
   while(true);
 }
}

void displayInfo()
{
 Serial.print(F("Location: ")); 
 if (gps.location.isValid())
 {
   Serial.print(gps.location.lat(), 6);
   Serial.print(F(","));
   Serial.print(gps.location.lng(), 6);
 }
 else
 {
   Serial.print(F("INVALID"));
 }

 Serial.print(F("  Date/Time: "));
 if (gps.date.isValid())
 {
   Serial.print(gps.date.month());
   Serial.print(F("/"));
   Serial.print(gps.date.day());
   Serial.print(F("/"));
   Serial.print(gps.date.year());
 }
 else
 {
   Serial.print(F("INVALID"));
 }

 Serial.print(F(" "));
 if (gps.time.isValid())
 {
   if (gps.time.hour() < 10) Serial.print(F("0"));
   Serial.print(gps.time.hour());
   Serial.print(F(":"));
   if (gps.time.minute() < 10) Serial.print(F("0"));
   Serial.print(gps.time.minute());
   Serial.print(F(":"));
   if (gps.time.second() < 10) Serial.print(F("0"));
   Serial.print(gps.time.second());
   Serial.print(F("."));
   if (gps.time.centisecond() < 10) Serial.print(F("0"));
   Serial.print(gps.time.centisecond());
 }
 else
 {
   Serial.print(F("INVALID"));
 }

 Serial.println();
}

Na monitorze COM dostaje zwrotkę o tym, że nie wykryło GPS
Odnośnie zworek. W dokumentacji jest, żeby rx ustawić na 1 tx na 0. NIestety to nie pomogło. Próbowałem rx 4 tx 3. Bez skutku. GPS nie zwraca poprawnie informacji o położeniu
 
Odpowiedź
  


Wiadomości w tym wątku
RE: Brak danych z linksprite GPS V3 Shield - przez zbrozli - 20-10-2018, 18:13

Skocz do:


Przeglądający: 1 gości