Smart Home Automation Forum
[Arduino source code for KC868-A256]-05 RS485 - Printable Version

+- Smart Home Automation Forum (https://www.kincony.com/forum)
+-- Forum: Technical Support (https://www.kincony.com/forum/forumdisplay.php?fid=20)
+--- Forum: KC868-A256 (https://www.kincony.com/forum/forumdisplay.php?fid=44)
+--- Thread: [Arduino source code for KC868-A256]-05 RS485 (/showthread.php?tid=2720)



[Arduino source code for KC868-A256]-05 RS485 - KinCony Support - 03-22-2023

Code:
/*/*WWW.KINCONY.COM*/
/*KC868-A256 code of RS485 */
void setup() {
  Serial.begin(115200);
  Serial2.begin(115200,SERIAL_8N1,13,14);//A256
   Serial2.println("RS485 SEND is OK!!");
   Serial2.println("******************");
 
}

void loop() {
  /*print the received data of RS485 port*/
  while(Serial2.available()>0)
   {
    Serial2.print((char)Serial2.read());//Read rs485 receive data  and print it
   }
  delay(200);
}