نمایش نتایج: از 1 به 10 از 16
Like Tree7 لایک

موضوع: راهنمایی برای خرید ماژول gsm/gprs

Hybrid View

  1. #1
    Member
    تاریخ عضویت
    Jul 2014
    نوشته ها
    80
    Gtm900b نمونه کد تست شده و پشتیبانی مناسب نداره..همه نمونه کدهای Sim900رو براش معرفی میکنن.. Sim900 حداقل شناخنه شدست و رفع اشکالش سریعتره..یک فروم تو اینترنت نیست که یک نفر با Gtm کار کرده باشه جز همین فروم که کسی پاسخگو مشکلات نمیشه.ما که از Gtm پشیمون شدیم.

  2. #2
    Member
    تاریخ عضویت
    Aug 2014
    نوشته ها
    76

    example ماژول GSM برای GPRS

    کد برای کاربر client

    کد:
    #include "SIM900.h"
    #include <NewSoftSerial.h>
    #include "inetGSM.h"
     
    //GSM Shield for Arduino
    //www.open-electronics.org
    //this code is based on the example of Arduino Labs.
     
    //Simple sketch to start a connection as client.
     
    InetGSM inet;
    char msg[100];
    int numdata;
    char inSerial[30];
    int i=0;
     
    void setup()
    {
      //Serial connection.
      Serial.begin(9600);
      Serial.println("GSM Shield testing.");
      //Start configuration of shield with baudrate.
      //For http uses is raccomanded to use 4800 or slower.
      if (gsm.begin(4800))
        Serial.println("\nstatus=READY");
      else Serial.println("\nstatus=IDLE");
     
      //GPRS attach, put in order APN, username and password.
      //If no needed auth let them blank.
      if (gsm.attachGPRS("internet.wind", "", ""))
        Serial.println("status=ATTACHED");
      else Serial.println("status=ERROR");
      delay(5000);
     
      //TCP Client GET, send a GET request to the server and
      //save the reply.
      numdata=inet.httpGET("www.google.com", 80, "/", msg, 100);
      //Print the results.
      Serial.println("\nNumber of data received:");
      Serial.println(numdata);
      Serial.println("Data received:");
      Serial.println(msg);
     
      //Tweet
      //inet.tweet("*********************key************", "An Arduino at #cpes15");
     
    };
     
    void loop()
    {
      //Read for new byte on serial hardware,
      //and write them on NewSoftSerial.
      serialhwread();
      //Read for new byte on NewSoftSerial.
      serialswread();
    };
     
    void serialhwread(){
      i=0;
      if (Serial.available() > 0){
        while (Serial.available() > 0) {
          inSerial[i]=(Serial.read());
          delay(10);
          i++;
        }
     
        inSerial[i]='\0';
        if(!strcmp(inSerial,"/END")){
          Serial.println("_");
          inSerial[0]=0x1a;
          inSerial[1]='\0';
          gsm.SimpleWrite(inSerial);
        }
        //Send a saved AT command using serial port.
        if(!strcmp(inSerial,"TEST")){
          Serial.println("SIGNAL QUALITY");
          gsm.SimpleWrite("AT+CSQ");
        }
        //Read last message saved.
        if(!strcmp(inSerial,"MSG")){
          Serial.println(msg);
        }
     
        else{
          Serial.println(inSerial);
          gsm.SimpleWrite(inSerial);
        }   
     
        inSerial[0]='\0';
      }
    }
     
    void serialswread(){
      gsm.SimpleRead();
    }

    کد برای Server


    کد:
    #include "SIM900.h"
    #include <NewSoftSerial.h>
    #include "inetGSM.h"
     
    //GSM Shield for Arduino
    //www.open-electronics.org
    //this code is based on the example of Arduino Labs.
     
    //Simple sketch to start a connection as server.
     
    InetGSM inet;
    char msg[100];
    int numdata;
    char inSerial[30];
    int i=0;
    long lasttime;
     
    void setup()
    {
      //Serial connection.
      Serial.begin(9600);
      Serial.println("GSM Shield testing.");
      //Start configuration of shield with baudrate.
      //For http uses is raccomanded to use 4800 or slower.
      if (gsm.begin(4800))
        Serial.println("\nstatus=READY");
      else Serial.println("\nstatus=IDLE");
     
      //GPRS attach, put in order APN, username and password.
      //If no needed auth let them blank.
      if (gsm.attachGPRS("internet.wind", "", ""))
        Serial.println("status=ATTACHED");
      else Serial.println("status=ERROR");
      delay(5000);
     
      //Read IP address.
      int i=0;
      while(i<20){
        gsm.SimpleRead();
        i++;
      }
      delay(5000);
      gsm.write((const uint8_t*)"AT+CIFSR\r", 10);
      gsm.read(msg, 200);
      Serial.println(msg);
      delay(5000);
     
      //Tweet
      //inet.tweet("*********************key************", "An Arduino at #cpes15");
     
      //TCP Server. Start the socket connection
      //as server on the assigned port.
      Serial.println(msg);
      delay(5000);
      if (gsm.connectTCPServer(80))
        Serial.println("status=TCPSERVERWAIT");
      else Serial.println("ERROR in Server");
      lasttime=millis();
    };
     
    void loop(){
      //serialhwread();
      //serialswread();
      //Check if there is an active connection.
      if (gsm.connectedClient()){
        //Read and print the last message received.
        gsm.read(msg, 200);
        Serial.println(msg);
      }
    };
     
    /*
    void loop()
    {
      serialhwread();
      serialswread();
    };
    */
     
    void serialhwread(){
      i=0;
      if (Serial.available() > 0){
        while (Serial.available() > 0) {
          inSerial[i]=(Serial.read());
          delay(10);
          i++;
        }
     
        inSerial[i]='\0';
        if(!strcmp(inSerial,"/END")){
          Serial.println("_");
          inSerial[0]=0x1a;
          inSerial[1]='\0';
          gsm.SimpleWrite(inSerial);
        }
        //Send a saved AT command using serial port.
        if(!strcmp(inSerial,"TEST")){
          Serial.println("SIGNAL QUALITY");
          gsm.SimpleWrite("AT+CSQ");
        }
        //Read last message saved.
        if(!strcmp(inSerial,"MSG")){
          Serial.println(msg);
        }
     
        else{
          Serial.println(inSerial);
          gsm.SimpleWrite(inSerial);
        }   
     
        inSerial[0]='\0';
      }
    }
     
    void serialswread(){
      gsm.SimpleRead();
    }


    لینک دانلود کتابخانه های مورد نیاز gsm-shield-arduino - GSM Shield Library for Arduino - Google Project Hosting
    (باید با استفاده از VPN دانلود کنید، به دلیل تحریم ها)

مجوز های ارسال و ویرایش

  • شما نمیتوانید موضوع جدیدی ارسال کنید
  • شما امکان ارسال پاسخ را ندارید
  • شما نمیتوانید فایل پیوست کنید.
  • شما نمیتوانید پست های خود را ویرایش کنید
  •  

SEO by vBSEO