ArduinoNative

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

commit a79a90c29c47c708cd15c8851eb4a9aa64b65ab1
parent ecf90e5286ac7c9fc07aec6f5e3a88504566018f
Author: Samdal <samdal@protonmail.com>
Date:   Mon, 21 Jun 2021 22:24:06 +0200

Updated README

Diffstat:
MREADME.org | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/README.org b/README.org @@ -3,7 +3,7 @@ * What is ArduinoNative? Arduino native allows you to run arduino code without arduino. -ArduinoNative does not attempt to emulate or simulate arduino, it is a simple header only implementation of the Arduino library in order to test and debug arduino code. +ArduinoNative does not attempt to emulate or simulate an arduino, it is a simple header only implementation of the Arduino library in order to test and debug arduino code. Not only do you have the ability to use your favorite IDE with fancy code suggestions, you can even use a debugger to step through your code. * Getting started 1. Download and install requiered tools to build C++ on your machine @@ -29,6 +29,7 @@ void loop() delay(1000); } #+END_SRC +[[More Examples]] * Available functions Note that some functions are not implemented exactly like Arduino has them. For example Serial.print and prinln can't print in byte representation yet.