Skip to content

Commit

Permalink
Merge pull request #6 from SolidRun/V1.0.2
Browse files Browse the repository at this point in the history
Adding functions for provisioning
  • Loading branch information
sterwen authored Jan 9, 2020
2 parents 813337f + 84b54b5 commit 74ec474
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion QuectelAT_Service.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Created: 26/06/2019
# Copyright: (c) Laurent Carré Sterwen Technologies 2019
# Licence: <your licence>
# Licence: Eclipse Public License 1.0
#-------------------------------------------------------------------------------

import serial
Expand Down Expand Up @@ -163,6 +163,12 @@ def checkSIM(self):
else:
self._SIM=False

def model(self):
return self._model

def manufacturer(self):
return "Quectel"

def SIM_Ready(self):
return self._SIM and self._SIM_STATUS == "READY"
def SIM_Present(self):
Expand Down

0 comments on commit 74ec474

Please sign in to comment.