3
votes
Accepted
Missing bytes sended through serial from C# app
There's two basic things wrong here.
First is your way of opening the serial port and immediately sending data. The Arduino is reset when you open the serial port and the bootloader runs. This takes ...
1
vote
C# Arduino: How to detect if the needed software is present on the computer
How would i go about finding out if there is the needed driver on that computer where the digispark is plugged in
I can't think of any way to do that. That's like asking if a keyboard you plug into a ...
1
vote
Problem communicating with ENC28J60
Something like this is needed here. If you use stream.Read without TClient.Available, the program will freeze or crash.
C# code:
string SendAndReceiveOverNet(string Command) {
Byte[] data = System....
1
vote
Accepted
Send and receive text between Arduino Mega 2560 and C# via ENC28J60
You can use TCP or UDP protocols.
https://www.arduino.cc/en/Tutorial/UDPSendReceiveString
https://www.arduino.cc/en/Tutorial/DhcpChatServer
You can use free UDP, TCP port listener sofwares for ...
1
vote
How does Arduino IDE 'Get Board Info'?
Please look here https://todbot.com/blog/2012/03/02/listcomports-windows-command-line-tool-for-usb-to-serial/
The article is right about what you are seeking.
Thanks to @Johnny Mopp, searching "...
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
c# × 16arduino-uno × 11
serial × 7
arduino-mega × 2
bluetooth × 2
arduino-leonardo × 2
visualstudio × 2
esp8266 × 1
programming × 1
arduino-ide × 1
c × 1
rfid × 1
networking × 1
digispark × 1