├── .gitignore ├── LICENSE ├── README.md ├── images ├── sim-800l-rpi3.jpg └── sim-800l-rpi31.jpg └── sim800l.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakhax/raspberry-pi-sim800l-gsm-module/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakhax/raspberry-pi-sim800l-gsm-module/HEAD/README.md -------------------------------------------------------------------------------- /images/sim-800l-rpi3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakhax/raspberry-pi-sim800l-gsm-module/HEAD/images/sim-800l-rpi3.jpg -------------------------------------------------------------------------------- /images/sim-800l-rpi31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakhax/raspberry-pi-sim800l-gsm-module/HEAD/images/sim-800l-rpi31.jpg -------------------------------------------------------------------------------- /sim800l.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakhax/raspberry-pi-sim800l-gsm-module/HEAD/sim800l.py --------------------------------------------------------------------------------