V.06 11/3

Dependencies:   FT6206 SDFileSystem SPI_TFT_ILI9341 TFT_fonts

Fork of ATT_AWS_IoT_demo by attiot

Revision:
29:f71a0be59b99
Parent:
28:54d9a550adf1
--- a/WNCInterface/WNCInterface.cpp	Mon Oct 09 21:13:49 2017 +0000
+++ b/WNCInterface/WNCInterface.cpp	Fri Nov 03 20:28:02 2017 +0000
@@ -198,10 +198,27 @@
 //
 // return the ICCID
 //
-void WNCInterface::getICCID(string *str) {
+void WNCInterface::getICCID(string *str) 
+{
     _pwnc->getICCID(str);
 }
 
-void WNCInterface::getObject(string sObjectName, unsigned char *ucObject, int *iObjectLength) {
+void WNCInterface::getObject(string sObjectName, unsigned char *ucObject, int *iObjectLength) 
+{
     _pwnc->getObject(sObjectName, ucObject, iObjectLength);
 }
+
+int16_t WNCInterface::getSignalStrength()
+{
+    return ( _pwnc->getDbmRssi());
+}
+
+bool WNCInterface::getUpdateStatus(unsigned char *cStatus) 
+{
+    return ( _pwnc->getUpdateStatus(cStatus));
+}
+
+bool WNCInterface::getAllObjects() 
+{
+    return ( _pwnc->getAllObjects());
+}