News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

monitor serial

Started by diegosantos, March 12, 2014, 04:40:18 PM

Previous topic - Next topic

diegosantos

hi !
i am using the codeblock with arduino.
is very good, but very very good !!!!!!!! and thk
the only thing i can not to do is how i can send data via serial port ?
if (Serial.available() > 0)
{
    Serial.println("data receiving ...........................................................");
}
for when the serial port received any data print the string "..."
i test it into the arduino IDE and working good, but, there i have the monitor serial with a box for send data to the seria port.

much love, diego

BlueHazzard

???
i don't understand your question...
if you want receive data from the serial port on your pc you will need some terminal program. on windows for example telnet and on linux gtkTerm...

greetings

oBFusCATed

C::B doesn't have integrated serial port in/out support.
You have to use standalone application.
On linux I find screen to work out of the box (there are other methods of course).
For windows search the net, I'm sure there are plenty of apps.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

diegosantos

thk a lot, i will do that.