05-12-2022, 06:56 AM
(This post was last modified: 05-12-2022, 07:51 AM by KinCony Support.)
[Arduino IDE demo source code for KC868-A64]--#01-RS485_code
Code:
/*WWW.KINCONY.COM*/
/*KC868-A64 code of RS485 */
void setup() {
Serial2.begin(9600,SERIAL_8N1,13,14); // IO13 485RX IO14 485TX
}
void loop() {
Serial2.println("KinCony ACBDEFG"); // Enter your print string
delay(1500);
}