Show Posts
|
|
Pages: 1 2 3 [4] 5 6 ... 94
|
|
54
|
Using Arduino / Project Guidance / Re: USB serial laptop to Arduino
|
on: September 21, 2012, 05:36:56 pm
|
|
Yes, use your port instead of the COM7 I used as example. If you get an error ("cannot open" or such), try a "traditional" COM port (e.g. COM1), listed in the hardware profile. Also, make sure the COM port you use is not already in use, by Hyperterminal, serial monitor or other terminal app.
|
|
|
|
|
55
|
Using Arduino / Project Guidance / Re: USB serial laptop to Arduino
|
on: September 21, 2012, 05:22:14 pm
|
I modified the above VBscript for you, to send just one character, "1": Const ForWriting = 2 Set fso = CreateObject("Scripting.FileSystemObject") Set com = fso.OpenTextFile("COM7:9600,N,8,1", ForWriting) MsgBox("Ready to write a character to COM") com.Write("1") com.Close()
|
|
|
|
|