06-01-2022, 01:33 AM
[Arduino IDE demo source code for KC868-A8S]--#10-KC868-A8S_GSM_code
sim7600-AT-debug.zip (Size: 542 bytes / Downloads: 285)
Code:
/*KC868-A8S GSM_CODE*/
/*The gsm module is SIM7600*/
/*Send the AT command*/
void setup() {
Serial.begin(115200);
Serial1.begin(115200);
}
void loop() {
while (Serial.available()) {
delay(1);
Serial1.write(Serial.read());
}
while (Serial1.available()) {
Serial.write(Serial1.read());
}
}
sim7600-AT-debug.zip (Size: 542 bytes / Downloads: 285)