GPS 연구 23

1404 단어 GPS 로거WemosGPS

개요



GPS를 이해하고 싶었습니다.
wemos D1에서 GPS 로거를 만들어 보았다.

사진





회로도





샘플 코드


#include <SPI.h>
#include <SD.h>
#include <SoftwareSerial.h>

SoftwareSerial ss(5, 4, false, 256);
const int chipSelect = 2;
void setup()
{
    Serial.begin(9600);
    ss.begin(9600);
    while (!Serial)
    {
        ;
    }
    Serial.println("\nBegin sdcard");
    if (!SD.begin(chipSelect))
    {
        Serial.println("Card failed, or not present");
        return;
    }
    Serial.println("sdcard initialized");
}
void loop()
{
    String response = "";
    File dataFile = SD.open("datalog.txt", FILE_WRITE);
    if (dataFile)
    {
        while (ss.available() > 0)
        {
            char c = ss.read();
            response += c;
        }
        dataFile.print(response);
        dataFile.close();
    }
    else
    {
        Serial.println("error opening datalog.txt");
    }
}




이상.

좋은 웹페이지 즐겨찾기