Hi all,I have an app that is working through usb on OS X just fine. The app is written in Realbasic. I want the app to work with older macs running os 9 and that have no usb ports. I would like to use a mini-DIN-8 cable and need to know the wiring information like pin outs to the arduino board and any code that i have to write special for the arduino, like do i have to do anything special with pins 0 and 1, and what about power and ground etc.?also if there are any realbasic users that have got a setup like this working what are the pitfalls to watch out for? Also under os x the serial port speed is set at 57600 and is working fine. Might this be a problem under os 9 with the modem or printer port?
Will i have to do anything special on the mac to get the communication going? Which is a better port to use, printer of modem?thanksJeff O'Brien. This is dredging up some old memories, but I seem to recall the printer and modem ports are nearly identical, but maybe TX and RX are swapped (DTE vs DCE?) between the two? They are RS422, not RS232, but wired in a certain configuration they are compatible with RS232 (422 is differential, and if TX- and RX- are tied to ground it behaves like 232 is my best recollection).The Arduino USB and mini models have TTL level serial on pins 0 and 1, so you will need level translation to true RS232 levels/voltages (e.g. Optical flares keygen download bandicam. With a MAX232 or similar IC). You can't connect them directly. If you are building an interface circuit, it may be advantageous to use an RS422 interface IC (sorry, never done it, so I don't have part numbers off hand).An Arduino serial would probably work as-is, although the combination of pseudo-RS232 support via transistors on one end and pseudo-RS232 by the RS422 port on the other end may be problematic.-j.
I have a project in which i draw in drawing and same thing is drawn in glcd. Through serial communication,byte buffer2send = new byte1;byte data2send = 0;data2send = Byte.Parse(textBox2.Text);//this way you will get the value 12 in your variable//we will use a buffer because the serialport.Write takes either a string or a buffer of databuffer2send0 = data2send;MessageBox.Show(“” + buffer2send + ” ” + buffer2send.Length);serialPort1.Write(buffer2send, 0, buffer2send.Length);i basicaly send 12 or like this values on microcontrollerbut at recieving side i cant recieve respective value so plz guide me.