อยากเปลี่ยนโค้ด gps กับesp32ให้เป็นesp8266

กระทู้คำถาม
ใครพอเขียนโค้ดได้บ้างคะ คือทำตัวเว็บนี้ จะเป็น esp32 แต่อยากใช้ esp8266 จะเปลี่ยนโค้ดตรงไหนได้บ้างคะ คืออยากรันให้ได้แค่ละติจุดกับลองติดจุด

 
 
อยากเปลี่ยนโค้ด gps กับ esp32 เป็นesp8266 ต้องแก้ประมาณตรงไหนบ้างอะคะ

#include <TinyGPS++.h> #include<HardwareSerial.h> #define RXPin (22) #defineTXPin (21) static const uint32_t GPSBaud = 9600; // The TinyGPS++ object TinyGPSPlus gps; // The serial connection to the GPS device HardwareSerial ss(2); void setup() { Serial.begin(115200); ss.begin(GPSBaud, SERIAL_8N1, RXPin, TXPin, false); Serial.println(TinyGPSPlus::libraryVersion()); } void loop() { while (ss.available() > 0) if (gps.encode(ss.read())) displayInfo(); 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.println(); }

เว็บที่ได้โค้ดมาคะ
http://www.robotsiam.com/article/78/โปรเจค-esp32-แสดงตำแหน่งจาก-gps-module-ด้วย-google-maps
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่