Skip to content

Instantly share code, notes, and snippets.

View RowanP4069's full-sized avatar

Rowan Patterson RowanP4069

  • Brisbane Australia
View GitHub Profile
@edgar-bonet
edgar-bonet / interpreter.ino
Last active February 4, 2024 12:26
Simple Arduino command line interpreter
/*
* interpreter.ino: Simple Arduino command line interpreter.
*
* This is intended solely as a template for building richer,
* application-specific interpreters. Add your specific commands to the
* exec() function, and whatever you need to setup() and loop().
*
* Usage:
* Talk to it through the serial port at 9600/8N1. Commands should be
* terminated by CR (\r), answers are terminated by CRLF (\r\n). This