blah blah blah is here! blah blah » Close

0
votes
1 answers

serial port locks program C#

Hello, I'm trying to monitor data from my serial port, but as soon as I start to read out and display the data on my screen I can't press any button in my program anymore. I assume the program is too busy with my serial port that it does ...

0
votes
1 answers

How to access Form controls from another class?

Hi all debugging.com members, Nowadays I'm working on a serial comminication program. I've created my own serial class to use my serial functions easly. However I couldn't access Form1 controls from my class. For example, I've serialPort ...

0
votes
0 answers

Arduino C# Interface

How do I get serial input/output from a Arduino. How do I specify COM port and baud rate?

0
votes
1 answers

serial port hex Reading in C #

Hi guys, I am reading some data from serial port and its in hex format... How do i store it and use bit-wise operators on it... & | etc.. Example : my incoming data is "pp10A0p" Now i need to take only th ...

0
votes
1 answers

Serial Device Communications application design

Hi guys, I have been tasked with writing a small application that interfaces with a serial device. I have managed to create my communication wrapper which basically handles all the comms between the application and the device. So, it has ...

0
votes
1 answers

Sending data on ASCII based protocol

Dear All, I have strings for data on windows forms stored in list boxes and text boxes. I want to communicate with a hardware through RS-232 serial communication and want to send data on ASCII-based protocol. Could anyone suggest where ...

0
votes
1 answers

Do I need a custom event handler or would a timer do?

GlennP
329

Hi, The below code shows the way I am being told to Serial Comms (I think that polling to see if an event has happened would be better but....). Then problem I have is that the program appears to get stuck at the point [code] while (R ...

1
votes
1 answers

Can we use Serial Port in ASP.NET Webforms?

in Winforms, this is easily done: using System.IO.Ports; SerialPort myComPort = new SerialPort("COM1", 115200, Parity.None, 8, StopBits.One); if (myComPort.IsOpen == false) { ...

0
votes
1 answers

C# Custom Datatype?

I'm trying to create a custom data type for a project I'm working on. The idea is that the datatype will be a "serial" number that looks something like: 0x010000305 ...you get the idea. I want to be able to say Serial mySer = 0 ...

0
votes
1 answers

Ethernet and Virtual Serial Port

I am a beginner in C#. I want to develop a software which will work through Ethernet. I know something about "Serial Port". But I know little about Networking. So I want some software[free] which will create Virtual serial port t ...

Feedback