Hi community,
I have adapted the given scripts to my needs, but one question came up. What actually shall abort.py do? And how can I recognize the state after an abort?
My idea would be to count runtime of the motors. But how to transfer this information to the driver or client?
How actually works status.py? It needs 2 arguments but who is sending this path information?
thank you in advance
ggtux
Read More...
Hi, Jasem,
I would open up my network for you. You would need to connect by an VPN tunnel. But it will take a day to put everything in the right order, ok?
By Gunter
Read More...
Hi,
I have successfully tested my CGEM DX mount with the Celestron WiFi-Adapter called "SkyPortal" (it is identical with SkyQLink). I integrated the WiFi-device in my home network and used port 2000. It worked very well.
Gunter
Read More...
Hi Guys,
I have a question about the status communication within the indi_script_dome driver. There are a few python schripts available. Those are doing basically nothing in regard to move the roof but obviously the communicating a current status of the roof like "park.py":
> cat park.py
#!/usr/bin/python
#
# Park script for INDI Dome Scripting Gateway
#
# Arguments: none
# Exit code: 0 for success, 1 for failure
#
import sys
coordinates = open('/tmp/indi-status', 'w')
coordinates.truncate()
coordinates.write('1 0 0')
coordinates.close()
sys.exit(0)
>
But I don't understand the meaning of the functions i.e. coordinates(). Can someone give a hint please?
Thnaks Gunter
Read More...
Hi Fabrizio,
can you Tell me the Port to use with SkyPortal? The Standard 2000 do not connect.
by Gunter
Read More...
Hi Pawel,
is there s more recent driver description ss the ond on the stellarmate pages?
By Gunter
Read More...
Maybe a silly question but will the driver in general work with Celestron SkyPortal Wi-Fi-adapter?
Gunter
Read More...
Hi,
maybe it is off topic but I can not find a comprehensive list of name convention in INDI development. A few things I have found in the very good new documentation site.
I would be very thankful for a hint.
CS Gunter
Read More...
Hi folks,
yesterday I tried many times to program the MCU 8266 via Arduino IDE with the latest version of weatherradio code (indi3rdparty/indi-duino/Firmwares).
I got always errors from the compiler like "WL_WRONG_PASSWORD out of scope". This following pease of code is in module esp8266.h
I figured out if I comment this code out it runs through with no errors.
It doesn't really matter to me because this routine won't be used because I set the right password in config.h. But just to let you know.
// case WL_WRONG_PASSWORD:
// if (esp8266Data.status == WIFI_CONNECTING) {
// addJsonLine("WiFi connection failed, wrong password.", MESSAGE_INFO);
// esp8266Data.status = WIFI_CONNECTION_FAILED;
// }
// break;
CS Gunter
Read More...