The tag has no usage guidance.

learn more… | top users | synonyms

-1
votes
0answers
22 views

How can i send the data into arduino using visual studio C# GUI button [closed]

Hallo everyone, I am working on a project. I have used a GUI for motor control. I have used a button in GUI. In order to control the speed of the motor through my gui, i have to use a ...
0
votes
0answers
61 views

Using C# to send data to an Arduino through a USB-serial converter

The two FT232RL USB-serial converters I ordered from China arrived today, and I tried to find a way to test them. I wrote the following Arduino code: const uint8_t ledPin = 3; bool ledIsOn = false; ...
3
votes
1answer
99 views

How does Arduino IDE 'Get Board Info'?

I want my C# application to automatically select the correct COM port by way of a string equality check against a 'GetInfo'-type request to the Arduino board. I know the Arduino IDE can get info ...
1
vote
1answer
169 views

Getting RFID tag data using C#

I am trying to get an RFID tag number using a WinForms application. But whenever I click the Button the application stops responding. Please help regarding this. Arduino code void setup() { Serial....
0
votes
1answer
89 views

Serial Getting Garbage Data with real data

I have made an app in VS2015 C#.Net which sends data to Serial port. The data i am sending is: stat>temp:39,38,;load:17,4,42,;fans>50,50,; Where as I am receiving: ððððstat>temp:39,38,;...
0
votes
2answers
45 views

How can I read delay of a note that I am playing

I am playing note tone with CapacitiveSensor and an output of tone like this void loop() { time_before = millis(); long total1 = cs_2_3.capacitiveSensor(30); long total2 = cs_2_4....
-1
votes
1answer
154 views

Unable to read the Serial Port through Arduino the way Serial Port Monitor softwares read it

I have a device feeding Rx Tx data every minute. I connected it to the computer. I downloaded a Serial Port Monitor Software, and here is the data I captured using that software. Now when I try to ...
0
votes
1answer
370 views

How can i receive data from Mega2560 on PC with Visual C#

How can i receive the data from my Arduino Mega 2560 with Visual C# on my PC. I send a short databyte (2 bytes) and a timestamp (4 bytes) over USB to PC //initialization const int RX = 0; const int ...
0
votes
1answer
160 views

Serial Communication to wpf (windows presentation foundation) Giving me odd results. How do I clear up the Strings I am receiving

Ok, So I'm trying to make a voltage/temp logger that will post to SQL. I'm using a WPF to make kind of a UI for people to measure the voltage of a cell, and take the temp of the battery acid in the ...
0
votes
1answer
113 views

System Is not Functioning Error. Windows XP, Arduino Uno R3, C# Listen SerialPort

Can anyone help me with this issue. We created an arduino project. We listen microswitch. If switch click, Arduino send basic serial data. And C# application read serial port. This solution is ...