Name | Modified | Size | Downloads / Week |
---|---|---|---|
Src | 2016-02-11 | ||
Bin | 2016-02-11 | ||
README | 2015-01-17 | 780 Bytes | |
Totals: 3 Items | 780 Bytes | 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.