Hi, I currently own Tiva C Series Launchpad (TM4C123GXL) and SIMCOM SIM900 GSM Modem
I am trying to use Energia to write code into Tiva C launchpad and send data to SIM900 via TxD/RxD
and make a call or send sms to certain number.
My questions are,
1. Do I need MAX232 to connect RxD and TxD between Tiva C launchpad and SIM 900?
2. As of Hardware connection, do I just connect (USB->Tiva C) =>RxD & TxD ->(Power Supply->SIM900) like that?
Do I need to be aware of additional hardware connections between these two?
3. As for Arduino, there are lot of library header files that could use call or sms functions, is there any library
I could use for Tiva C Launchpad in Energia for writing code?
So far, all I could get started off is just
void setup() { |
2 |
|
3 |
Serial.begin(9600); |
4 |
pinMode(RED_LED, OUTPUT); |
5 |
} |
6 |
7 |
void loop() |
8 |
{ |
9 |
{ |
10 |
Serial.print( "THANKS FOR WATCHING\n" ); |
11 |
delay(100); |
12 |
digitalWrite(RED_LED, HIGH); // set the LED on |
13 |
delay(500); // wait for a second |
14 |
} |
15 |
digitalWrite(RED_LED, LOW); // set the LED off |
16 |
delay(500); |
17 |
|
18 |
|
19 |
} |
Can I get further help with writing code for GSM Modem? Thank you so much :)