初始化提交
This commit is contained in:
100
arduino-cli/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino
Normal file
100
arduino-cli/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino
Normal file
@@ -0,0 +1,100 @@
|
||||
/*
|
||||
Web client
|
||||
|
||||
This sketch connects to a website through a GSM shield. Specifically,
|
||||
this example downloads the URL "http://www.arduino.cc/asciilogo.txt" and
|
||||
prints it to the Serial monitor.
|
||||
|
||||
Circuit:
|
||||
* GSM shield attached to an Arduino
|
||||
* SIM card with a data plan
|
||||
|
||||
created 8 Mar 2012
|
||||
by Tom Igoe
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/GSMExamplesWebClient
|
||||
|
||||
*/
|
||||
|
||||
// libraries
|
||||
#include <GSM.h>
|
||||
|
||||
// PIN Number
|
||||
#define PINNUMBER ""
|
||||
|
||||
// APN data
|
||||
#define GPRS_APN "GPRS_APN" // replace your GPRS APN
|
||||
#define GPRS_LOGIN "login" // replace with your GPRS login
|
||||
#define GPRS_PASSWORD "password" // replace with your GPRS password
|
||||
|
||||
// initialize the library instance
|
||||
GSMClient client;
|
||||
GPRS gprs;
|
||||
GSM gsmAccess;
|
||||
|
||||
// URL, path & port (for example: arduino.cc)
|
||||
char server[] = "arduino.cc";
|
||||
char path[] = "/asciilogo.txt";
|
||||
int port = 80; // port 80 is the default for HTTP
|
||||
|
||||
void setup() {
|
||||
// initialize serial communications and wait for port to open:
|
||||
Serial.begin(9600);
|
||||
while (!Serial) {
|
||||
; // wait for serial port to connect. Needed for native USB port only
|
||||
}
|
||||
|
||||
Serial.println("Starting Arduino web client.");
|
||||
// connection state
|
||||
boolean notConnected = true;
|
||||
|
||||
// After starting the modem with GSM.begin()
|
||||
// attach the shield to the GPRS network with the APN, login and password
|
||||
while (notConnected) {
|
||||
if ((gsmAccess.begin(PINNUMBER) == GSM_READY) &
|
||||
(gprs.attachGPRS(GPRS_APN, GPRS_LOGIN, GPRS_PASSWORD) == GPRS_READY)) {
|
||||
notConnected = false;
|
||||
} else {
|
||||
Serial.println("Not connected");
|
||||
delay(1000);
|
||||
}
|
||||
}
|
||||
|
||||
Serial.println("connecting...");
|
||||
|
||||
// if you get a connection, report back via serial:
|
||||
if (client.connect(server, port)) {
|
||||
Serial.println("connected");
|
||||
// Make a HTTP request:
|
||||
client.print("GET ");
|
||||
client.print(path);
|
||||
client.println(" HTTP/1.1");
|
||||
client.print("Host: ");
|
||||
client.println(server);
|
||||
client.println("Connection: close");
|
||||
client.println();
|
||||
} else {
|
||||
// if you didn't get a connection to the server:
|
||||
Serial.println("connection failed");
|
||||
}
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// if there are incoming bytes available
|
||||
// from the server, read them and print them:
|
||||
if (client.available()) {
|
||||
char c = client.read();
|
||||
Serial.print(c);
|
||||
}
|
||||
|
||||
// if the server's disconnected, stop the client:
|
||||
if (!client.available() && !client.connected()) {
|
||||
Serial.println();
|
||||
Serial.println("disconnecting.");
|
||||
client.stop();
|
||||
|
||||
// do nothing forevermore:
|
||||
for (;;)
|
||||
;
|
||||
}
|
||||
}
|
||||
113
arduino-cli/libraries/GSM/examples/GsmWebServer/GsmWebServer.ino
Normal file
113
arduino-cli/libraries/GSM/examples/GsmWebServer/GsmWebServer.ino
Normal file
@@ -0,0 +1,113 @@
|
||||
/*
|
||||
GSM Web Server
|
||||
|
||||
A simple web server that shows the value of the analog input pins.
|
||||
using a GSM shield.
|
||||
|
||||
Circuit:
|
||||
* GSM shield attached
|
||||
* Analog inputs attached to pins A0 through A5 (optional)
|
||||
|
||||
created 8 Mar 2012
|
||||
by Tom Igoe
|
||||
*/
|
||||
|
||||
// libraries
|
||||
#include <GSM.h>
|
||||
|
||||
// PIN Number
|
||||
#define PINNUMBER ""
|
||||
|
||||
// APN data
|
||||
#define GPRS_APN "GPRS_APN" // replace your GPRS APN
|
||||
#define GPRS_LOGIN "login" // replace with your GPRS login
|
||||
#define GPRS_PASSWORD "password" // replace with your GPRS password
|
||||
|
||||
|
||||
// initialize the library instance
|
||||
GPRS gprs;
|
||||
GSM gsmAccess; // include a 'true' parameter for debug enabled
|
||||
GSMServer server(80); // port 80 (http default)
|
||||
|
||||
// timeout
|
||||
const unsigned long __TIMEOUT__ = 10 * 1000;
|
||||
|
||||
void setup() {
|
||||
// initialize serial communications and wait for port to open:
|
||||
Serial.begin(9600);
|
||||
while (!Serial) {
|
||||
; // wait for serial port to connect. Needed for native USB port only
|
||||
}
|
||||
|
||||
// connection state
|
||||
boolean notConnected = true;
|
||||
|
||||
// Start GSM shield
|
||||
// If your SIM has PIN, pass it as a parameter of begin() in quotes
|
||||
while (notConnected) {
|
||||
if ((gsmAccess.begin(PINNUMBER) == GSM_READY) &
|
||||
(gprs.attachGPRS(GPRS_APN, GPRS_LOGIN, GPRS_PASSWORD) == GPRS_READY)) {
|
||||
notConnected = false;
|
||||
} else {
|
||||
Serial.println("Not connected");
|
||||
delay(1000);
|
||||
}
|
||||
}
|
||||
|
||||
Serial.println("Connected to GPRS network");
|
||||
|
||||
// start server
|
||||
server.begin();
|
||||
|
||||
//Get IP.
|
||||
IPAddress LocalIP = gprs.getIPAddress();
|
||||
Serial.println("Server IP address=");
|
||||
Serial.println(LocalIP);
|
||||
}
|
||||
|
||||
void loop() {
|
||||
|
||||
|
||||
// listen for incoming clients
|
||||
GSMClient client = server.available();
|
||||
|
||||
|
||||
|
||||
if (client) {
|
||||
while (client.connected()) {
|
||||
if (client.available()) {
|
||||
Serial.println("Receiving request!");
|
||||
bool sendResponse = false;
|
||||
while (char c = client.read()) {
|
||||
if (c == '\n') {
|
||||
sendResponse = true;
|
||||
}
|
||||
}
|
||||
|
||||
// if you've gotten to the end of the line (received a newline
|
||||
// character)
|
||||
if (sendResponse) {
|
||||
// send a standard http response header
|
||||
client.println("HTTP/1.1 200 OK");
|
||||
client.println("Content-Type: text/html");
|
||||
client.println();
|
||||
client.println("<html>");
|
||||
// output the value of each analog input pin
|
||||
for (int analogChannel = 0; analogChannel < 6; analogChannel++) {
|
||||
client.print("analog input ");
|
||||
client.print(analogChannel);
|
||||
client.print(" is ");
|
||||
client.print(analogRead(analogChannel));
|
||||
client.println("<br />");
|
||||
}
|
||||
client.println("</html>");
|
||||
//necessary delay
|
||||
delay(1000);
|
||||
client.stop();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,105 @@
|
||||
/*
|
||||
Make Voice Call
|
||||
|
||||
This sketch, for the Arduino GSM shield, puts a voice call to
|
||||
a remote phone number that you enter through the serial monitor.
|
||||
To make it work, open the serial monitor, and when you see the
|
||||
READY message, type a phone number. Make sure the serial monitor
|
||||
is set to send a just newline when you press return.
|
||||
|
||||
Circuit:
|
||||
* GSM shield
|
||||
* Voice circuit.
|
||||
With no voice circuit the call will send nor receive any sound
|
||||
|
||||
|
||||
created Mar 2012
|
||||
by Javier Zorzano
|
||||
|
||||
This example is in the public domain.
|
||||
*/
|
||||
|
||||
// libraries
|
||||
#include <GSM.h>
|
||||
|
||||
// PIN Number
|
||||
#define PINNUMBER ""
|
||||
|
||||
// initialize the library instance
|
||||
GSM gsmAccess; // include a 'true' parameter for debug enabled
|
||||
GSMVoiceCall vcs;
|
||||
|
||||
String remoteNumber = ""; // the number you will call
|
||||
char charbuffer[20];
|
||||
|
||||
void setup() {
|
||||
|
||||
// initialize serial communications and wait for port to open:
|
||||
Serial.begin(9600);
|
||||
while (!Serial) {
|
||||
; // wait for serial port to connect. Needed for native USB port only
|
||||
}
|
||||
|
||||
Serial.println("Make Voice Call");
|
||||
|
||||
// connection state
|
||||
boolean notConnected = true;
|
||||
|
||||
// Start GSM shield
|
||||
// If your SIM has PIN, pass it as a parameter of begin() in quotes
|
||||
while (notConnected) {
|
||||
if (gsmAccess.begin(PINNUMBER) == GSM_READY) {
|
||||
notConnected = false;
|
||||
} else {
|
||||
Serial.println("Not connected");
|
||||
delay(1000);
|
||||
}
|
||||
}
|
||||
|
||||
Serial.println("GSM initialized.");
|
||||
Serial.println("Enter phone number to call.");
|
||||
|
||||
}
|
||||
|
||||
void loop() {
|
||||
|
||||
// add any incoming characters to the String:
|
||||
while (Serial.available() > 0) {
|
||||
char inChar = Serial.read();
|
||||
// if it's a newline, that means you should make the call:
|
||||
if (inChar == '\n') {
|
||||
// make sure the phone number is not too long:
|
||||
if (remoteNumber.length() < 20) {
|
||||
// let the user know you're calling:
|
||||
Serial.print("Calling to : ");
|
||||
Serial.println(remoteNumber);
|
||||
Serial.println();
|
||||
|
||||
// Call the remote number
|
||||
remoteNumber.toCharArray(charbuffer, 20);
|
||||
|
||||
|
||||
// Check if the receiving end has picked up the call
|
||||
if (vcs.voiceCall(charbuffer)) {
|
||||
Serial.println("Call Established. Enter line to end");
|
||||
// Wait for some input from the line
|
||||
while (Serial.read() != '\n' && (vcs.getvoiceCallStatus() == TALKING));
|
||||
// And hang up
|
||||
vcs.hangCall();
|
||||
}
|
||||
Serial.println("Call Finished");
|
||||
remoteNumber = "";
|
||||
Serial.println("Enter phone number to call.");
|
||||
} else {
|
||||
Serial.println("That's too long for a phone number. I'm forgetting it");
|
||||
remoteNumber = "";
|
||||
}
|
||||
} else {
|
||||
// add the latest character to the message to send:
|
||||
if (inChar != '\r') {
|
||||
remoteNumber += inChar;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
93
arduino-cli/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino
Normal file
93
arduino-cli/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino
Normal file
@@ -0,0 +1,93 @@
|
||||
/*
|
||||
SMS receiver
|
||||
|
||||
This sketch, for the Arduino GSM shield, waits for a SMS message
|
||||
and displays it through the Serial port.
|
||||
|
||||
Circuit:
|
||||
* GSM shield attached to and Arduino
|
||||
* SIM card that can receive SMS messages
|
||||
|
||||
created 25 Feb 2012
|
||||
by Javier Zorzano / TD
|
||||
|
||||
This example is in the public domain.
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/GSMExamplesReceiveSMS
|
||||
|
||||
*/
|
||||
|
||||
// include the GSM library
|
||||
#include <GSM.h>
|
||||
|
||||
// PIN Number for the SIM
|
||||
#define PINNUMBER ""
|
||||
|
||||
// initialize the library instances
|
||||
GSM gsmAccess;
|
||||
GSM_SMS sms;
|
||||
|
||||
// Array to hold the number a SMS is retreived from
|
||||
char senderNumber[20];
|
||||
|
||||
void setup() {
|
||||
// initialize serial communications and wait for port to open:
|
||||
Serial.begin(9600);
|
||||
while (!Serial) {
|
||||
; // wait for serial port to connect. Needed for native USB port only
|
||||
}
|
||||
|
||||
Serial.println("SMS Messages Receiver");
|
||||
|
||||
// connection state
|
||||
boolean notConnected = true;
|
||||
|
||||
// Start GSM connection
|
||||
while (notConnected) {
|
||||
if (gsmAccess.begin(PINNUMBER) == GSM_READY) {
|
||||
notConnected = false;
|
||||
} else {
|
||||
Serial.println("Not connected");
|
||||
delay(1000);
|
||||
}
|
||||
}
|
||||
|
||||
Serial.println("GSM initialized");
|
||||
Serial.println("Waiting for messages");
|
||||
}
|
||||
|
||||
void loop() {
|
||||
char c;
|
||||
|
||||
// If there are any SMSs available()
|
||||
if (sms.available()) {
|
||||
Serial.println("Message received from:");
|
||||
|
||||
// Get remote number
|
||||
sms.remoteNumber(senderNumber, 20);
|
||||
Serial.println(senderNumber);
|
||||
|
||||
// An example of message disposal
|
||||
// Any messages starting with # should be discarded
|
||||
if (sms.peek() == '#') {
|
||||
Serial.println("Discarded SMS");
|
||||
sms.flush();
|
||||
}
|
||||
|
||||
// Read message bytes and print them
|
||||
while (c = sms.read()) {
|
||||
Serial.print(c);
|
||||
}
|
||||
|
||||
Serial.println("\nEND OF MESSAGE");
|
||||
|
||||
// Delete message from modem memory
|
||||
sms.flush();
|
||||
Serial.println("MESSAGE DELETED");
|
||||
}
|
||||
|
||||
delay(1000);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,101 @@
|
||||
/*
|
||||
Receive Voice Call
|
||||
|
||||
This sketch, for the Arduino GSM shield, receives voice calls,
|
||||
displays the calling number, waits a few seconds then hangs up.
|
||||
|
||||
Circuit:
|
||||
* GSM shield
|
||||
* Voice circuit. Refer to to the GSM shield getting started guide
|
||||
at http://www.arduino.cc/en/Guide/ArduinoGSMShield#toc11
|
||||
* SIM card that can accept voice calls
|
||||
|
||||
With no voice circuit the call will connect, but will not send or receive sound
|
||||
|
||||
created Mar 2012
|
||||
by Javier Zorzano
|
||||
|
||||
This example is in the public domain.
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/GSMExamplesReceiveVoiceCall
|
||||
|
||||
*/
|
||||
|
||||
// Include the GSM library
|
||||
#include <GSM.h>
|
||||
|
||||
// PIN Number
|
||||
#define PINNUMBER ""
|
||||
|
||||
// initialize the library instance
|
||||
GSM gsmAccess;
|
||||
GSMVoiceCall vcs;
|
||||
|
||||
// Array to hold the number for the incoming call
|
||||
char numtel[20];
|
||||
|
||||
void setup() {
|
||||
// initialize serial communications and wait for port to open:
|
||||
Serial.begin(9600);
|
||||
while (!Serial) {
|
||||
; // wait for serial port to connect. Needed for native USB port only
|
||||
}
|
||||
|
||||
Serial.println("Receive Voice Call");
|
||||
|
||||
// connection state
|
||||
boolean notConnected = true;
|
||||
|
||||
// Start GSM shield
|
||||
// If your SIM has PIN, pass it as a parameter of begin() in quotes
|
||||
while (notConnected) {
|
||||
if (gsmAccess.begin(PINNUMBER) == GSM_READY) {
|
||||
notConnected = false;
|
||||
} else {
|
||||
Serial.println("Not connected");
|
||||
delay(1000);
|
||||
}
|
||||
}
|
||||
|
||||
// This makes sure the modem correctly reports incoming events
|
||||
vcs.hangCall();
|
||||
|
||||
Serial.println("Waiting for a call");
|
||||
}
|
||||
|
||||
void loop() {
|
||||
// Check the status of the voice call
|
||||
switch (vcs.getvoiceCallStatus()) {
|
||||
case IDLE_CALL: // Nothing is happening
|
||||
|
||||
break;
|
||||
|
||||
case RECEIVINGCALL: // Yes! Someone is calling us
|
||||
|
||||
Serial.println("RECEIVING CALL");
|
||||
|
||||
// Retrieve the calling number
|
||||
vcs.retrieveCallingNumber(numtel, 20);
|
||||
|
||||
// Print the calling number
|
||||
Serial.print("Number:");
|
||||
Serial.println(numtel);
|
||||
|
||||
// Answer the call, establish the call
|
||||
vcs.answerCall();
|
||||
break;
|
||||
|
||||
case TALKING: // In this case the call would be established
|
||||
|
||||
Serial.println("TALKING. Press enter to hang up.");
|
||||
while (Serial.read() != '\n') {
|
||||
delay(100);
|
||||
}
|
||||
vcs.hangCall();
|
||||
Serial.println("Hanging up and waiting for the next call.");
|
||||
break;
|
||||
}
|
||||
delay(1000);
|
||||
}
|
||||
|
||||
|
||||
101
arduino-cli/libraries/GSM/examples/SendSMS/SendSMS.ino
Normal file
101
arduino-cli/libraries/GSM/examples/SendSMS/SendSMS.ino
Normal file
@@ -0,0 +1,101 @@
|
||||
/*
|
||||
SMS sender
|
||||
|
||||
This sketch, for the Arduino GSM shield,sends an SMS message
|
||||
you enter in the serial monitor. Connect your Arduino with the
|
||||
GSM shield and SIM card, open the serial monitor, and wait for
|
||||
the "READY" message to appear in the monitor. Next, type a
|
||||
message to send and press "return". Make sure the serial
|
||||
monitor is set to send a newline when you press return.
|
||||
|
||||
Circuit:
|
||||
* GSM shield
|
||||
* SIM card that can send SMS
|
||||
|
||||
created 25 Feb 2012
|
||||
by Tom Igoe
|
||||
|
||||
This example is in the public domain.
|
||||
|
||||
http://www.arduino.cc/en/Tutorial/GSMExamplesSendSMS
|
||||
|
||||
*/
|
||||
|
||||
// Include the GSM library
|
||||
#include <GSM.h>
|
||||
|
||||
#define PINNUMBER ""
|
||||
|
||||
// initialize the library instance
|
||||
GSM gsmAccess;
|
||||
GSM_SMS sms;
|
||||
|
||||
void setup() {
|
||||
// initialize serial communications and wait for port to open:
|
||||
Serial.begin(9600);
|
||||
while (!Serial) {
|
||||
; // wait for serial port to connect. Needed for native USB port only
|
||||
}
|
||||
|
||||
Serial.println("SMS Messages Sender");
|
||||
|
||||
// connection state
|
||||
boolean notConnected = true;
|
||||
|
||||
// Start GSM shield
|
||||
// If your SIM has PIN, pass it as a parameter of begin() in quotes
|
||||
while (notConnected) {
|
||||
if (gsmAccess.begin(PINNUMBER) == GSM_READY) {
|
||||
notConnected = false;
|
||||
} else {
|
||||
Serial.println("Not connected");
|
||||
delay(1000);
|
||||
}
|
||||
}
|
||||
|
||||
Serial.println("GSM initialized");
|
||||
}
|
||||
|
||||
void loop() {
|
||||
|
||||
Serial.print("Enter a mobile number: ");
|
||||
char remoteNum[20]; // telephone number to send sms
|
||||
readSerial(remoteNum);
|
||||
Serial.println(remoteNum);
|
||||
|
||||
// sms text
|
||||
Serial.print("Now, enter SMS content: ");
|
||||
char txtMsg[200];
|
||||
readSerial(txtMsg);
|
||||
Serial.println("SENDING");
|
||||
Serial.println();
|
||||
Serial.println("Message:");
|
||||
Serial.println(txtMsg);
|
||||
|
||||
// send the message
|
||||
sms.beginSMS(remoteNum);
|
||||
sms.print(txtMsg);
|
||||
sms.endSMS();
|
||||
Serial.println("\nCOMPLETE!\n");
|
||||
}
|
||||
|
||||
/*
|
||||
Read input serial
|
||||
*/
|
||||
int readSerial(char result[]) {
|
||||
int i = 0;
|
||||
while (1) {
|
||||
while (Serial.available() > 0) {
|
||||
char inChar = Serial.read();
|
||||
if (inChar == '\n') {
|
||||
result[i] = '\0';
|
||||
Serial.flush();
|
||||
return 0;
|
||||
}
|
||||
if (inChar != '\r') {
|
||||
result[i] = inChar;
|
||||
i++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user