Browse Source

Update 'Seeed Wio Terminal/projects/m5-gps.ino'

cube 8 months ago
parent
commit
ff0f1f0beb
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Seeed Wio Terminal/projects/m5-gps.ino

+ 1
- 1
Seeed Wio Terminal/projects/m5-gps.ino View File

@@ -115,7 +115,7 @@ void displayInfo()
115 115
 void api_lookup()
116 116
 {
117 117
   HTTPClient http;
118
-  String api_key = "e86b43a62693d9c23eb781f3a06ff13c";
118
+  String api_key = "API KEY";
119 119
   String url = "http://api.openweathermap.org/geo/1.0/reverse?lat=" + last_lat + "&lon=" + last_lon + "&limit=1&appid=" + api_key;
120 120
   http.begin(url);
121 121