Download Latest Version INDISharp-src-0.5.zip (14.8 kB)
Email in envelope

Get an email when there's a new version of INDI Sharp

Home / Bin
Name Modified Size InfoDownloads / Week
Parent folder
INDISharp-bin-0.7.zip 2016-02-11 22.2 kB
INDISharp-bin-0.6.zip 2015-06-09 15.2 kB
INDISharp-bin-0.5.zip 2015-06-07 15.2 kB
INDISharp-bin-0.4.zip 2015-05-17 11.9 kB
INDISharp-bin-0.3.zip 2015-01-22 11.3 kB
INDISharp-bin-0.2.zip 2015-01-18 11.1 kB
INDISharp-bin-0.1.zip 2015-01-16 10.3 kB
Totals: 7 Items   97.3 kB 0
This software is a library, more precisely a .NET assembly (INDI.dll) containing a WinForm that interacts with the INDI Client code written in C#, included into the same assembly.

to connect to an INDI server, simply create an instance of the INDIForm, like this:

[code]
string address = "127.0.0.1"; //default value: "127.0.0.1" can omit this parameter
int port = 7624; // default value: 7624 this also can be omitted
INDIForm form = new INDIForm(address, port);
form.Show();
[/code]

to get Blobs from INDIForm you can use this code:

[code]
form.BlobReceived += BlobReceivedCallback;
[/code]

where "BlobReceivedCallback" is your custom function.

that's all!

There will be a complete documentation in future, until now, you can use this sample code.

Thanks,
Ilia Platone.
Source: README, updated 2015-01-17