Simple-Function is a custom Arduino library developed to simplify serial communication and user input handling for beginners and developers.
- readInt()
- readFloat()
- readDouble()
- readChar()
- readString()
- cl() print function
- Beginner friendly
- Simplified Arduino programming
- Download this repository as ZIP
- Open Arduino IDE
- Go to: Sketch → Include Library → Add .ZIP Library
- Select downloaded ZIP file
#include <simple.h>
void setup() {
cl("Simple-Function Ready!");
int age = readInt("Enter Age:");
cl(age);
}
void loop() {
}