Skip to content

Python library that gets coordinates using a SIM808 module

Notifications You must be signed in to change notification settings

cvalle7/SIM808-GSM-GPRS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

SIM808-GSM-GPRS

This library has been developed for a Raspberry Pi. Python library that gets coordinates using a SIM808 module.

The library obtain coordinates through the SIM808 module, to start using this library just initialize it as follows:

importing library

import SIM808 as GPS

Initializing listening port

gps = GPS.GPS('/dev/ttyAMA0', 115200)
gps.setPowerOn()

Getting coordinates

coordinates =  gps.getLocation()
lat = coordinates[0]
lng = coordinates[1]

Upcoming updates

GSM communication functionalities will be implemented in the future.

About

Python library that gets coordinates using a SIM808 module

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages