| Quantity | 3+ units | 10+ units | 30+ units | 50+ units | More |
|---|---|---|---|---|---|
| Price /Unit | $34.63 | $33.93 | $32.87 | $31.45 | Contact US |
M5Stack Paper S3 E-Paper Display Touchable Low Power Consumption 4.7-inch E-ink Display Development Kit ESP32S3
$87.42
LILYGO Grey Shell Version T-Display-S3 1.9-inch LCD Display Development Board WiFi Bluetooth5.0 Wireless Module for Arduino
$32.47
Sketchboard Mechanical Arm Plotter Robot Arm Students Programming Learning DIY Kit for Arduino
$44.05
LinkSprite ATWIN Quad-band GPRS/GSM Shield for Arduino
This LinkSprite GSM/GPRS shield has PCB etched antenna, so no need for external antenna.
CODE: SELECT ALL/*
*/
#include //Include the NewSoftSerial library to send serial commands to the cellular module.
#include //Used for string manipulations
char incoming_char=0; //Will hold the incoming character from the Serial Port.
NewSoftSerial cell(2,3); //Create a 'fake' serial port. Pin 2 is the Rx pin, pin 3 is the Tx pin.
void setup()
{
//Initialize serial ports for communication.
Serial.begin(9600);
cell.begin(9600);
Serial.println("Starting ATWIN Communication...");
}
void loop()
{
//If a character comes in from the cellular module...
if(cell.available() >0)
{
incoming_char=cell.read(); //Get the character from the cellular serial port.
Serial.print(incoming_char); //Print the incoming character to the terminal.
}
//If a character is coming from the terminal to the Arduino...
if(Serial.available() >0)
{
incoming_char=Serial.read(); //Get the character coming from the terminal
cell.print(incoming_char); //Send the character to the cellular module.