Secret Box

Introduction

Function
LinkIt ONE with Grove - Light Sensor, put into a box. when the box is opened, a message will be sent to your phone.
Connection
Code
// demo of Grove Starter kit for LinkIt ONE // Secret box #include <LGSM.h> char num[20] = "13425171053"; // your number write here char text[100] = "Warning: Your box had been opened!!"; // what do you want to send const int pinLight = A0; // light sensor connect to A0 bool isLightInBox() { return (analogRead(pinLight)<50); // when get data less than 50, means light sensor was in box } void setup() { Serial.begin(115200); while(!isLightInBox()); // until put in box delay(2000); } void loop() { if(!isLightInBox()) // box is open { Serial.println("box had been opened"); while(!LSMS.ready()) { delay(1000); } Serial.println("SIM ready for work!"); LSMS.beginSMS(num); LSMS.print(text); if(LSMS.endSMS()) { Serial.println("SMS is sent"); } else { Serial.println("SMS send fail"); } while(!isLightInBox()); // until put in box delay(2000); } delay(10); }

Help us make it better

Thank you for choosing Seeed. A couple of months ago we initiated a project to improve our documentation system. What you are looking at now is the first edition of the new documentation system. Comparing to the old one, here is the progresses that we made:
  • Replaced the old documentation system with a new one that was developed from Mkdocs, a more widely used and cooler tool to develop documentation system.
  • Integrated the documentation system with our official website, now you can go to Bazaar and other section like Forum and Community more conveniently.
  • Reviewed and rewrote documents for hundreds of products for the system’s first edition, and will continue migrate documents from old wiki to the new one.
An easy-to-use instruction is as important as the product itself. We are expecting this new system will improve your experience when using Seeed’s products. However since this is the first edition, there are still many things need to improve, if you have any suggestions or findings, you are most welcome to submit the amended version as our contributor or give us suggestions in the survey below, Please don’t forget to leave your email address so that we can reply.
Happy hacking