You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
332 B
15 lines
332 B
/* |
|
Library for Software Serial over RS485 connection |
|
Created by Stepan Richter, November 2023 |
|
*/ |
|
|
|
#ifndef SoftRS485_h |
|
#define SoftRS485_h |
|
|
|
#include "Arduino.h" |
|
|
|
extern void init485(int RO, int nRE, int DE, int DI); |
|
extern boolean available485(); |
|
extern String get485message(); |
|
extern boolean send485(char message[]); |
|
#endif
|
|
|