Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
INDISharp-src-0.7.zip | 2016-02-11 | 24.9 kB | |
INDISharp-src-0.6.zip | 2015-06-09 | 14.7 kB | |
INDISharp-src-0.5.zip | 2015-06-07 | 14.8 kB | |
INDISharp-src-0.4.zip | 2015-05-17 | 11.1 kB | |
INDISharp-src-0.3.zip | 2015-01-22 | 23.8 kB | |
INDISharp-src-0.2.zip | 2015-01-18 | 23.6 kB | |
INDISharp-src-0.1.zip | 2015-01-16 | 22.9 kB | |
Totals: 7 Items | 135.8 kB | 1 |
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.