This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

RFID BASED ATTENDANCE SYSTEM USING SMS

can any one can give me the program for the rfid based attendance using gsm module for notifying parents system for

Parents
  • Former Member
    0 Former Member

    Sure, here you go:

    void main(void) {
      initRF();
      initGSMModule();
    
      while (1) {
        if (rfIDReceived())
          sendSMS("your parents number", "I need to attend a programming course NOW");
        sleep(1000);
      }
    }
    

    See, that was not very hard, you got yourself a complete project, where can I send the invoice for this ? :)

Reply
  • Former Member
    0 Former Member

    Sure, here you go:

    void main(void) {
      initRF();
      initGSMModule();
    
      while (1) {
        if (rfIDReceived())
          sendSMS("your parents number", "I need to attend a programming course NOW");
        sleep(1000);
      }
    }
    

    See, that was not very hard, you got yourself a complete project, where can I send the invoice for this ? :)

Children