Skip to main content
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 ...
Majenko's user avatar
  • 106k
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 ...
Nick Gammon's user avatar
  • 38.9k
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....
NaLex Software's user avatar
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 ...
user30878's user avatar
  • 112
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 "...
Faig's user avatar
  • 121

Only top scored, non community-wiki answers of a minimum length are eligible