mirror of
				https://github.com/KevinMidboe/TinyGSM.git
				synced 2025-10-29 18:00:18 +00:00 
			
		
		
		
	Merge branch 'patch-1' into develop
This commit is contained in:
		| @@ -405,7 +405,28 @@ class TinyGsmSim800 | |||||||
|  protected: |  protected: | ||||||
|   // Can return a location from CIPGSMLOC as per the template |   // Can return a location from CIPGSMLOC as per the template | ||||||
|  |  | ||||||
|  |   String getGsmLocation() { | ||||||
|  |     sendAT(GF("+CIPGSMLOC=1,1")); | ||||||
|  |     if (waitResponse(10000L, GF(GSM_NL "+CIPGSMLOC:")) != 1) { | ||||||
|  |       return ""; | ||||||
|  |     } | ||||||
|  |     String res = stream.readStringUntil('\n'); | ||||||
|  |     waitResponse(); | ||||||
|  |     res.trim(); | ||||||
|  |     return res; | ||||||
|  |   } | ||||||
|  |    | ||||||
|  |   String getBaseStationGsmLocation() { | ||||||
|  |     sendAT(GF("+CLBS=1,1")); | ||||||
|  |     if (waitResponse(10000L, GF(GSM_NL "+CLBS:")) != 1) { | ||||||
|  |       return ""; | ||||||
|  |     } | ||||||
|  |     String res = stream.readStringUntil('\n'); | ||||||
|  |     waitResponse(); | ||||||
|  |     res.trim(); | ||||||
|  |     return res; | ||||||
|  |   } | ||||||
|  |    | ||||||
|   /* |   /* | ||||||
|    * GPS location functions |    * GPS location functions | ||||||
|    */ |    */ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user