GPSの研究 その23
概要
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");
}
}
#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");
}
}
以上。
Author And Source
この問題について(GPSの研究 その23), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/232225c8c045126430e3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .