Is there Any RS232 port Available???
there is a rs485 port in industruino . can we add 9 Pin RS232 Port
Use the Serial1 port.
-----------------------------------------------------------------------
int waarde = 10;
void setup() {
Serial1.begin(9600); //open the TX/RX port
while (!Serial1) ; //Specific Leonardo
}
void loop() {
Serial1.println("test");
Serial1.print("Value = ");
Serial1.println(waarde);
}
-----------------------------------------------
Your answer
Please try to give a substantial answer. If you wanted to comment on the question or answer, just use the commenting tool. Please remember that you can always revise your answers - no need to answer the same question twice. Also, please don't forget to vote - it really helps to select the best questions and answers!
Keep Informed
About This Forum
This community is for professionals and enthusiasts of our products and services.
Read GuidelinesQuestion tools
Stats
Asked: 7/15/15, 9:06 AM |
Seen: 3326 times |
Last updated: 12/19/15, 10:23 AM |