[Arduino IDE demo source code for KC868-A8S]--#10-KC868-A8S_GSM_code
sim7600-AT-debug.zip (Size: 542 bytes / Downloads: 313)
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());
}
}
![ZIP File .zip](https://www.kincony.com/forum/images/attachtypes/zip.png)