ArduinoDriver
ArduinoDriver copied to clipboard
LED HIGH example
hello I'm a noob who is trying to understand how the arduinodriver is working, but i can't find anything basic how the driver is working. could some maby send me sort of a sample to turn on a led.
If somebody make the example that will be very helpful...
If somebody make the example that will be very helpful...
i use this:
using (var driver = new ArduinoDriver.ArduinoDriver(AttachedArduino, true))
{
driver.Send(new DigitalWriteRequest(13, ArduinoDriver.DigitalValue.Low));
driver.Send(new DigitalWriteRequest(13, ArduinoDriver.DigitalValue.high));
}
does this ArduinoDriver library also support Wemos D1 Mini (ESP8266)?
Please see the visual studio project below. https://github.com/PeeWee2000/ArduinoDriver/tree/master/Source/ArduinoDriver.BasicReadWrite
I've requested that the original writer of this project merge this sample into his code base but until then you can access a basic LED example here.