/| //| | // ) ) // ) )
//| // | | ( ) ___ __ // / / ((
// | // | | / / // ) ) // ) ) // / / \\
// | // | | / / // // // / / ) )
// |// | | / / ((____ // ((___/ / ((___ / /
Setup and configuration guide
Change the serial baud rate:
Simply locate the following line and change it to your desired value.
Configure other input or output devices:
- Add the libraries in the section for those.
- Configure the code for input and/or output in the functions called customInput() and customOutput().
- Upload the sketch to your Arduino.
- Run the command matching your setup:
-
- 'sysconf customIO none' to disable custom input and output
-
- 'sysconf customIO input' to enable only custom input
-
- 'sysconf customIO output' to enable only custom output
-
- 'sysconf customIO both' to enable custom input and output
- Your configuration will be saved to the EEPROM!
- You should now be able to use your new input and/or output device!
Warning: Try to avoid delays in your IO functions. This would slow down the entire system.
Back to the main page