EduIntro
EduIntro copied to clipboard
Arduino library aimed at making super-fast introductory workshops to Arduino. Based on the idea of having components as objects in the code.
Author/Maintainer is changed from `Arduino LLC`/`David Cuartielles` to `Arduino`/`Arduino ` within the `library.properties` file.
```cpp int ServoMotor::write(uint8_t _value) { if (!_attached) { attach(pin); _attached = true; } Servo::write(_value); } ``` Servo:: Write does not return a value, so should it also be set to...
Hey. I got an idea as to include function for morse code which imports functions for basic applications like sending a distress sos signal and I'm working on it. Not...
hi it seems that servo.h and virtualWire.h both are using same timer. so when using with virtualWire compile error will occur. im using uno and the error message is: libraries\Servo\avr\Servo.cpp.o...
Hi, I really like that only a single include is needed: `#include ` Everything else being so neat and simple, how about: `#include ` Just like the File > Example...
Hi, Would it make sense to introduce something like button.pressed() instead of readSwitch() ? E.g. in https://github.com/arduino/EduIntro/blob/master/examples/by_topic/Button/Button.ino#L29 if (button.readSwitch() == LOW) { led.on(); } else { led.off(); } if (button.pressed())...