Hello Fabio, Hello Users.
I need a new AstroArt version whith a specify directly command to control a Rool-On-Roof or Dome.
I need to send via Ethernet or Via Com X a string to Open/Closed roof of my Observatory checking before Mount ParkPositon and recive from a external sensor via ethernet or COM X any string to check the real open and real closed and real park.
Thanks for your Help
Dedicate Function Roof/Dome
-
- Posts: 253
- Joined: 03 Dec 2018, 22:33
Re: Dedicate Function Roof/Dome
If you have a USB->Serial converter you can test it with a Loopback Connection:
http://www.ni.com/white-paper/3450/en
Just connect Pin2 and Pin3 (TX and RX) so that output is sent back to input, then use the following script:
Here's a picture of the cable. Using a jumper, pin 2 and 3 were shorted.
http://www.ni.com/white-paper/3450/en
Just connect Pin2 and Pin3 (TX and RX) so that output is sent back to input, then use the following script:
Code: Select all
Serial.Connect(6) 'My port is COM6
Serial.Send("HelloWorld")
Pause(0.1)
r$ = Serial.Receive$()
print r$