SpecX
New member
Wemos D1, VK2828U7G5LF NEO7-M, Arduino 1.8.12
Скетч:
Вот что выдает монитор:
Два вопроса, как решить reset и как "иероглифы" превратить в читаемый текст.
Спасибо.
Скетч:
Код:
// The serial connection to the GPS device
#include <SoftwareSerial.h>
static const int RXPin = D7, TXPin = D8;
static const uint32_t GPSBaud = 115200;
SoftwareSerial gps(RXPin, TXPin);
void setup() {
delay(500);
Serial.begin(115200);
gps.begin(115200);
}
void loop() {
while (gps.available() > 0) {
Serial.write(gps.read());
}
while (Serial.available() > 0) {
gps.write(Serial.read());
}
}
Два вопроса, как решить reset и как "иероглифы" превратить в читаемый текст.
Спасибо.