Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[51] sending text message using printf in C51

Status
Not open for further replies.

hithesh123

Full Member level 6
Joined
Nov 21, 2009
Messages
324
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,298
Location
lax
Activity points
3,548
How do I send a text message with quotes using printf?

example: printf(""hello world");

or

Printf("AT+CMGS="+123456789"");

I get syntax error on keil C51.
 

I think It would not work both ways. I use to save the string (like AT+CMGS="+123456789") to a variable and use that variable name to print values
Hope this Helps..!
 

you just have to use null character - "/"

To send the previous messages

printf("\"hello world\"");

printf("AT+CMGS=\"123456789\"");
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top