What's new

Closed Paano po ba mag ulit ng code sa arduino?

Status
Not open for further replies.

TIM45

Enthusiast
Joined
Dec 4, 2016
Posts
5
Reaction
0
Points
62
Guys paano po ba mag ulit ng code sa arduino may transition code po ba para maulit ang code
 
search mu lang,. gamit kang loop, do while,

#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); // RX, TX
void setup() {
Serial.begin(9600); // low enough
while (!Serial) {;}
Serial.println("hello!");
mySerial.begin(4800);
pinMode(2,INPUT_PULLUP);
while (digitalRead(2) == HIGH) {;}
mySerial.write("AT+CMGF=1"); mySerial.println();
delay(1000);
mySerial.write("AT+CMGS="); mySerial.write('"'); mySerial.write("09508859967"); mySerial.write('"'); mySerial.println();
delay(1000);
;mySerial.write("text massage..");
;mySerial.println(char(26));


papaano po mag add ng iba pang phine number? thanks po
 
Status
Not open for further replies.

Similar threads

Back
Top