1
vote
3answers
467 views

IR transmitter for Air Conditioner using PC Serial Port

I have to control an air conditioner from pc serial port using IR LED, When I am reading the IR data from the serial port It gives nearly 160 characters, But actually my AC remote may send a ...
0
votes
1answer
542 views

How to send/receive serial communication

How can I send a string via serial communications from Java or Python? I have a very little arduino program that will recieve a CSV string of ints that each control different relays (I adapted it ...
0
votes
2answers
2k views

Sending data to serial port using javascript and jssc.jar

I need to write a web-based application that will sent data to a display unit (a serial port connecting device) connected by a usb-to-serial converter. I read that this is possible using a java ...
0
votes
1answer
188 views

What is the fastest, reliable baud rate that can be used using radio modems? [closed]

I need to communicate with 30+ devices, via serial data over radio modems (Using C). Each cycle of messages should be done as quick as possible. (< 500ms) Basic setup would be a master sending out ...
3
votes
2answers
398 views

Writing strings and a variable to a buffer in C

I am using serial port to control a device called nano controller. I used CreateFile, writeFile and readFile for communication. this is the syntax for writeFile, if (!WriteFile(hComm, lpBuf, ...
0
votes
2answers
2k views

How do I use COMMTIMEOUTS to wait until bytes are available but read more than one byte?

I have a C++ serial port class that has a none blocking and a blocking mode for read operations. For blocking mode: COMMTIMEOUTS cto; GetCommTimeouts(m_hFile,&cto); // Set the new timeouts ...
0
votes
1answer
2k views

Java RXTXcomm lib to connect to /dev/ttyACM0

Im using RXXTX java lib to connect to serial ports. I'm using this lib with no problems connecting to /dev/ttyUSB0 (1,2,3,etc). But when i want to connect to /dev/ttyACM0 the port its not found. ...
0
votes
1answer
856 views

Serial programming in Arduino, reading decimal numbers with values outside of the values of 0-9

I'm currently trying to use my Arduino Uno for controlling stepper motors. The task that's been assigned to me is to create a program that can control the motors, but by prompting the user to input ...
0
votes
1answer
242 views

Reassembling serial message in C#

I am new to the world of C# and Serial communication. Having read a few tutorials, I have managed to get the communication working. I asked another similar question here but I dont think I asked the ...
1
vote
1answer
389 views

Serial communication error in objective-C: Resource busy

I'm writing some code which purpose is to read values send by an ECG. The ECG sends values read by it's sensors through a serial connection and (as a start) all the program has to do is read the ...
0
votes
1answer
149 views

sending data over serial link with different parities

I am trying to test the difference between no,even and odd parity - always 8 data bits, 1 stop bit So I have 2 PCs connected with serial cable both running RealTerm or any other terminal. What I ...
0
votes
2answers
834 views

Establish communication link between a device and iOS

I'm developing an iPhone/iPad app that requires it communicate with another device. I'm actually more interested in receiving input from another device that the iPhone is connected to through USB. The ...
4
votes
2answers
4k views

Arduino stops sending data to the serial port after a long time period

I am using an Arduino Uno rev2 device as a permanently connected device that sometimes sends signals to a PC (Windows 7 x64). Code compiled with Arduino 1.0 software from arduino.cc Topic on ...
1
vote
1answer
245 views

Echoing characters to a serial port in C

I am attempting to use C to echo characters from a pic32 processor to a terminal emulator via a serial port. The user would be prompted to enter a string and all that happens is that the characters ...
1
vote
1answer
116 views

Improving IR serial reliability via software

The best thing I could find on Google was Reed-Solomon encoding; but it seems quite drastic. Basically, I'm communicating with a small, resource-constrained device that has a serial port. ...
3
votes
1answer
2k views

Sending commands from a PC to an Android phone - via physical connection (USB, Serial, etc)

I'm working on a project to automate some tasks (such as play a song, play a video, receive bluetooth data, etc) on an Android phone from a PC. Basically the PC will send a notifier to the phone and ...
2
votes
1answer
4k views

Android Bluetooth Serial/RFCOMM/SPP, How to Change the BAUD RATE?

This is very frustrating as I've been trying for weeks and not even a clue on the internet. I am working on a project that reads/writes bluetooth serial data on different farming hardware. most of ...
0
votes
1answer
348 views

What is an efficient algorithm for performing Manchester encoding in software?

What's an efficient way to do Manchester encoding in software?
0
votes
3answers
5k views

RXTX serial connection - blocking read() problem

I am trying to use the RXTX library for blocking serial communication on Windows (XP and 7). I have tested the connection with Hyperterminal in both ends, and it works flawlessly. I set up the ...
0
votes
1answer
841 views

pySerial writes to Arduino Uno get buffered

I have a Python script that writes short messages to the serial port on my Arduino Uno board using pySerial. There is a loop and depending on some conditions, multiple writes can happen within a loop, ...
4
votes
3answers
2k views

Binary communications protocol parser design for serial data

I'm revisiting a communications protocol parser design for a stream of bytes (serial data, received 1 byte at a time). The packet structure (can't be changed) is: || Start Delimiter (1 byte) | ...