menu connected
wide shoutbox
/listConnections - list all current connections to shoutbox
/version - return current version
/t - shout as mr.turing
/addXMPPRelay/(xmpp buddy name) - add buddy as an xmpp relay
/removeXMPPRelay/(xmpp buddy name) - remove buddy as xmpp relay
Serial port flow control
Ahoy harland!
Just to understand, you have a device that you want to communicate with with a N81 @ 19200 Baud.
So, under the covers we use a library called JSSC and most of that functionality is exposed on the "port" of the serial service.
so in theory something like the following should work:
serial.port.setDTR(True)
and
serial.port.setRTS(True)
Here's a code pointer:
https://github.com/MyRobotLab/myrobotlab/blob/master/src/org/myrobotlab/...
good luck!
thanks Kev
that works setting DTR ture moves pin 4 to 9v and setting RTS false moves pin 7 to -9v.
It then powers the serial port in the Mate. I have been using a 9 volt battery to power the pins.
Really appreciate the help!