ArduinoDriver icon indicating copy to clipboard operation
ArduinoDriver copied to clipboard

LED HIGH example

Open mikalting opened this issue 6 years ago • 4 comments

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.

mikalting avatar Nov 28 '18 09:11 mikalting

If somebody make the example that will be very helpful...

TehseenHasan avatar Nov 29 '18 20:11 TehseenHasan

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)); }

mikalting avatar Nov 30 '18 08:11 mikalting

does this ArduinoDriver library also support Wemos D1 Mini (ESP8266)?

TehseenHasan avatar Nov 30 '18 09:11 TehseenHasan

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.

PeeWee2000 avatar Dec 21 '18 15:12 PeeWee2000