-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphidget21.h
4428 lines (4160 loc) · 192 KB
/
phidget21.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#ifndef PHIDGET_H
#define PHIDGET_H
#ifdef __cplusplus
extern "C" {
#endif
#if defined(__stdcall)
#define CCONV __stdcall
#else
#if defined(__BORLANDC__) || defined(_MSC_VER)
#define CCONV __stdcall
#else
#define CCONV
#endif
#endif
#if !defined(__int64)
#if !defined(__BORLANDC__) && !defined(_MSC_VER)
typedef long long __int64;
#endif
#endif
/*
* This file is part of libphidget21
*
* Copyright 2006-2015 Phidgets Inc <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>
*/
/*! \mainpage Phidget21 C API Documentation
*
* Describes the Application Program Interface (API) for each Phidget device.
* The API can be used by a number of languages;
* this manual discusses use via C and the code examples reflect this.
*
* \section howto_sec How to use Phidgets
Phidgets are an easy to use set of building blocks for low cost sensing and control from your PC.
Using the Universal Serial Bus (USB) as the basis for all Phidgets, the complexity is managed behind
this easy to use and robust Application Program Interface (API) library.
The library was written originally for Windows, but has been ported to MacOS and Linux.
Although the library is written in C, the functions can be called from a number of languages including C#, C/C++, Java, Python, Visual Basic, and many more.
The full library source is not available for all platforms - however, the Linux distribution contains all platform independent code.
See the <a class="el" href="modules.html">Modules</a> section for the API documentation.
See \ref phidcommon for calls common to all phidgets.
Refer to the User Guide for your device and the
<a class="el" href="http://www.phidgets.com/docs/General_Phidget_Programming" target="_blank">General Phidget Programming</a> page for more detailed, language inspecific API documentation and examples.
You can download a set of C/C++ example code from the Quick Downloads section of the <a class="el" href="http://www.phidgets.com/docs/Language_-_C/C%2B%2B#Quick_Downloads" target="_blank"> C/C++ Language Page</a>.
\section general_sec General Usage
Phidgets in C are accessed/controlled via handles. Every Phidget has it's own Handle, as well as a generic Phidget handle. These handles are simply pointers
from the user's perspective - internally, they point to structures. Almost every function in the API takes a Phidget handle as the first argument.
phidget21.h contains the API calls for all Phidgets. It should be included in any programs which need to access the Phidget C Library from C/C++.
Note that this file is not distributed in the source, this file is generated from the source using the C preproccessor. It is installed with the libraries.
The first step is to create the handle. Every phidget has it's own _create function. This creates space for the structure internally and gives you a
valid Handle for passing to all other Phidget functions.
The next step is to register event handlers. These need to be registered now, because they only throw events in the future,
and if they are registered later, you will miss events. Every Phidget event takes a Phidget handle, a function callback pointer and
a user defined pointer, which is passed back from within the callback.
The next step is to open the Phidget. This is done with either \ref CPhidget_open, \ref CPhidget_openRemote or \ref CPhidget_openRemoteIP, depending on whether you want
to open the Phidget locally or over the network. Open returns right away (is asynchronous) so you have to either wait for the attach event,
or call \ref CPhidget_waitForAttachment before using the handle further.
The next step it to actually use the Phidget. Once attached, all functions can be called. Device specific handles should be cast to \ref CPhidgetHandle for use
with the common API functions.
Once finished, you should call first \ref CPhidget_close and then \ref CPhidget_delete to clean up the connection to the Phidget and the Handle before exiting.
\section return_sec Return Codes
Every Phidget function returns an int. A return code of 0 means success, anything else means failure. The failure codes are documented here: \ref phidconst.
When a value is unknown, in addition to returning an error code, the pointer will be set to one of the unknonwn values documented here: \ref phidconst.
*
*/
/** \defgroup phidgets Specific Phidgets
*/
/*
* This file is part of libphidget21
*
* Copyright 2006-2015 Phidgets Inc <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>
*/
/** \defgroup phidcommon Phidget Common
* These calls are common to all Phidgets objects. See the <a class="el" href="http://www.phidgets.com/docs/General_Phidget_Programming" target="_blank">General Phidget Programming</a> page for more in-depth usage instructions and examples.
* @{
*/
/**
* A phidget handle.
*/
typedef struct _CPhidget *CPhidgetHandle;
/**
* Timestamp structure - usually initialized to 0.
*/
typedef struct _CPhidget_Timestamp
{
int seconds; /**< Number of seconds since timing began */
int microseconds; /**< Number of microseconds since last second passed - range is 0 - 999999 */
} CPhidget_Timestamp, *CPhidget_TimestampHandle;
/*
* This file is part of libphidget21
*
* Copyright 2006-2015 Phidgets Inc <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>
*/
/** \addtogroup phidconst
* @{
*/
/**
* Phidget device class uniquely identifies a class of Phidgets.
*/
typedef enum
{
PHIDCLASS_ACCELEROMETER = 2, /**< Phidget Accelerometer */
PHIDCLASS_ADVANCEDSERVO = 3, /**< Phidget Advanced Servo */
PHIDCLASS_ANALOG = 22, /**< Phidget Analog */
PHIDCLASS_BRIDGE = 23, /**< Phidget Bridge */
PHIDCLASS_ENCODER = 4, /**< Phidget Encoder */
PHIDCLASS_FREQUENCYCOUNTER = 21, /**< Phidget Frequency Counter */
PHIDCLASS_GPS = 5, /**< Phidget GPS */
PHIDCLASS_INTERFACEKIT = 7, /**< Phidget Interface Kit */
PHIDCLASS_IR = 19, /**< Phidget IR */
PHIDCLASS_LED = 8, /**< Phidget LED */
PHIDCLASS_MOTORCONTROL = 9, /**< Phidget Motor Control */
PHIDCLASS_PHSENSOR = 10, /**< Phidget PH Sensor */
PHIDCLASS_RFID = 11, /**< Phidget RFID */
PHIDCLASS_SERVO = 12, /**< Phidget Servo */
PHIDCLASS_SPATIAL = 20, /**< Phidget Spatial */
PHIDCLASS_STEPPER = 13, /**< Phidget Stepper */
PHIDCLASS_TEMPERATURESENSOR = 14, /**< Phidget Temperature Sensor */
PHIDCLASS_TEXTLCD = 15, /**< Phidget TextLCD */
PHIDCLASS_TEXTLED = 16, /**< Phidget TextLED */
PHIDCLASS_WEIGHTSENSOR = 17, /**< Phidget Weight Sensor */
} CPhidget_DeviceClass;
/**
* Phidget device id uniquely identifies a specific type of Phidget.
*/
typedef enum
{
/* These are all current devices */
PHIDID_ACCELEROMETER_3AXIS = 0x07E, /**< Phidget 3-axis Accelerometer (1059) */
PHIDID_ADVANCEDSERVO_1MOTOR = 0x082, /**< Phidget 1 Motor Advanced Servo (1066) */
PHIDID_ADVANCEDSERVO_8MOTOR = 0x03A, /**< Phidget 8 Motor Advanced Servo (1061) */
PHIDID_ANALOG_4OUTPUT = 0x037, /**< Phidget Analog 4-output (1002) */
PHIDID_BIPOLAR_STEPPER_1MOTOR = 0x07B, /**< Phidget 1 Motor Bipolar Stepper Controller with 4 Digital Inputs (1063) */
PHIDID_BRIDGE_4INPUT = 0x03B, /**< Phidget Bridge 4-input (1046) */
PHIDID_ENCODER_1ENCODER_1INPUT = 0x04B, /**< Phidget Encoder - Mechanical (1052) */
PHIDID_ENCODER_HS_1ENCODER = 0x080, /**< Phidget High Speed Encoder (1057) */
PHIDID_ENCODER_HS_4ENCODER_4INPUT = 0x04F, /**< Phidget High Speed Encoder - 4 Encoder (1047) */
PHIDID_FREQUENCYCOUNTER_2INPUT = 0x035, /**< Phidget Frequency Counter 2-input (1054) */
PHIDID_GPS = 0x079, /**< Phidget GPS (1040) */
PHIDID_INTERFACEKIT_0_0_4 = 0x040, /**< Phidget Interface Kit 0/0/4 (1014) */
PHIDID_INTERFACEKIT_0_0_8 = 0x081, /**< Phidget Interface Kit 0/0/8 (1017) */
PHIDID_INTERFACEKIT_0_16_16 = 0x044, /**< Phidget Interface Kit 0/16/16 (1012) */
PHIDID_INTERFACEKIT_2_2_2 = 0x036, /**< Phidget Interface Kit 2/2/2 (1011) */
PHIDID_INTERFACEKIT_8_8_8 = 0x045, /**< Phidget Interface Kit 8/8/8 (1013, 1018, 1019) */
PHIDID_INTERFACEKIT_8_8_8_w_LCD = 0x07D, /**< Phidget Interface Kit 8/8/8 with TextLCD (1201, 1202, 1203) */
PHIDID_IR = 0x04D, /**< Phidget IR Receiver Transmitter (1055) */
PHIDID_LED_64_ADV = 0x04C, /**< Phidget LED 64 Advanced (1031) */
PHIDID_LINEAR_TOUCH = 0x076, /**< Phidget Linear Touch (1015) */
PHIDID_MOTORCONTROL_1MOTOR = 0x03E, /**< Phidget 1 Motor Motor Controller (1065) */
PHIDID_MOTORCONTROL_HC_2MOTOR = 0x059, /**< Phidget 2 Motor High Current Motor Controller (1064) */
PHIDID_RFID_2OUTPUT = 0x031, /**< Phidget RFID with Digital Outputs and Onboard LED (1023) */
PHIDID_RFID_2OUTPUT_READ_WRITE = 0x034, /**< Phidget RFID with R/W support (1024) */
PHIDID_ROTARY_TOUCH = 0x077, /**< Phidget Rotary Touch (1016) */
PHIDID_SPATIAL_ACCEL_3AXIS = 0x07F, /**< Phidget Spatial 3-axis accel (1049, 1041, 1043) */
PHIDID_SPATIAL_ACCEL_GYRO_COMPASS = 0x033, /**< Phidget Spatial 3/3/3 (1056, 1042, 1044) */
PHIDID_TEMPERATURESENSOR = 0x070, /**< Phidget Temperature Sensor (1051) */
PHIDID_TEMPERATURESENSOR_4 = 0x032, /**< Phidget Temperature Sensor 4-input (1048) */
PHIDID_TEMPERATURESENSOR_IR = 0x03C, /**< Phidget Temperature Sensor IR (1045) */
PHIDID_TEXTLCD_2x20_w_8_8_8 = 0x17D, /**< Phidget TextLCD with Interface Kit 8/8/8 (1201, 1202, 1203) */
PHIDID_TEXTLCD_ADAPTER = 0x03D, /**< Phidget TextLCD Adapter (1204) */
PHIDID_UNIPOLAR_STEPPER_4MOTOR = 0x07A, /**< Phidget 4 Motor Unipolar Stepper Controller (1062) */
/* These are all past devices (no longer sold) */
PHIDID_ACCELEROMETER_2AXIS = 0x071, /**< Phidget 2-axis Accelerometer (1053, 1054) */
PHIDID_INTERFACEKIT_0_8_8_w_LCD = 0x053, /**< Phidget Interface Kit 0/8/8 with TextLCD (1219, 1220, 1221) */
PHIDID_INTERFACEKIT_4_8_8 = 4, /**< Phidget Interface Kit 4/8/8 */
PHIDID_LED_64 = 0x04A, /**< Phidget LED 64 (1030) */
PHIDID_MOTORCONTROL_LV_2MOTOR_4INPUT = 0x058, /**< Phidget 2 Motor Low Voltage Motor Controller with 4 Digital Inputs (1060) */
PHIDID_PHSENSOR = 0x074, /**< Phidget PH Sensor (1058) */
PHIDID_RFID = 0x030, /**< Phidget RFID without Digital Outputs */
PHIDID_SERVO_1MOTOR = 0x039, /**< Phidget 1 Motor Servo Controller (1000) */
PHIDID_SERVO_1MOTOR_OLD = 2, /**< Phidget 1 Motor Servo Controller - Old Version */
PHIDID_SERVO_4MOTOR = 0x038, /**< Phidget 4 Motor Servo Controller (1001) */
PHIDID_SERVO_4MOTOR_OLD = 3, /**< Phidget 4 Motor Servo Controller - Old Version */
PHIDID_TEXTLCD_2x20 = 0x052, /**< Phidget TextLCD without Interface Kit (1210) */
PHIDID_TEXTLCD_2x20_w_0_8_8 = 0x153, /**< Phidget TextLCD with Interface Kit 0/8/8 (1219, 1220, 1221) */
PHIDID_TEXTLED_1x8 = 0x049, /**< Phidget TextLED 1x8 */
PHIDID_TEXTLED_4x8 = 0x048, /**< Phidget TextLED 4x8 (1040) */
PHIDID_WEIGHTSENSOR = 0x072, /**< Phidget Weight Sensor (1050) */
/* Device in firmware upgrade mode */
PHIDID_FIRMWARE_UPGRADE = 0x098,
} CPhidget_DeviceID;
/** @} */
typedef enum
{
PHIDUID_NOTHING = 1,
PHIDUID_ACCELEROMETER_2AXIS_2G,
PHIDUID_ACCELEROMETER_2AXIS_10G,
PHIDUID_ACCELEROMETER_2AXIS_5G,
PHIDUID_ACCELEROMETER_3AXIS_3G,
PHIDUID_ADVANCEDSERVO_1MOTOR,
PHIDUID_ADVANCEDSERVO_8MOTOR,
PHIDUID_ADVANCEDSERVO_8MOTOR_PGOOD_FLAG,
PHIDUID_ADVANCEDSERVO_8MOTOR_CURSENSE_FIX,
PHIDUID_ANALOG_4OUTPUT,
PHIDUID_BRIDGE_4INPUT_GAINBUG,
PHIDUID_BRIDGE_4INPUT,
PHIDUID_ENCODER_1ENCODER_1INPUT_OLD,
PHIDUID_ENCODER_1ENCODER_1INPUT_v1,
PHIDUID_ENCODER_1ENCODER_1INPUT_v2,
PHIDUID_ENCODER_HS_1ENCODER,
PHIDUID_ENCODER_HS_4ENCODER_4INPUT,
PHIDUID_FREQUENCYCOUNTER_2INPUT,
PHIDUID_GPS,
PHIDUID_INTERFACEKIT_0_0_4_NO_ECHO,
PHIDUID_INTERFACEKIT_0_0_4,
PHIDUID_INTERFACEKIT_0_0_8,
PHIDUID_INTERFACEKIT_0_5_7,
PHIDUID_INTERFACEKIT_0_8_8_w_LCD,
PHIDUID_INTERFACEKIT_0_16_16_NO_ECHO,
PHIDUID_INTERFACEKIT_0_16_16_BITBUG,
PHIDUID_INTERFACEKIT_0_16_16,
PHIDUID_INTERFACEKIT_2_2_2,
PHIDUID_INTERFACEKIT_2_8_8,
PHIDUID_INTERFACEKIT_4_8_8,
PHIDUID_INTERFACEKIT_8_8_8_NO_ECHO,
PHIDUID_INTERFACEKIT_8_8_8,
PHIDUID_INTERFACEKIT_8_8_8_FAST,
PHIDUID_INTERFACEKIT_8_8_8_w_LCD_NO_ECHO,
PHIDUID_INTERFACEKIT_8_8_8_w_LCD,
PHIDUID_INTERFACEKIT_8_8_8_w_LCD_FAST,
PHIDUID_INTERFACEKIT_TOUCH_SLIDER,
PHIDUID_INTERFACEKIT_TOUCH_ROTARY,
PHIDUID_IR,
PHIDUID_LED_64,
PHIDUID_LED_64_ADV,
PHIDUID_LED_64_ADV_M3,
PHIDUID_MOTORCONTROL_1MOTOR,
PHIDUID_MOTORCONTROL_HC_2MOTOR,
PHIDUID_MOTORCONTROL_LV_2MOTOR_4INPUT,
PHIDUID_PHSENSOR,
PHIDUID_RFID_OLD,
PHIDUID_RFID,
PHIDUID_RFID_2OUTPUT_NO_ECHO,
PHIDUID_RFID_2OUTPUT,
PHIDUID_RFID_2OUTPUT_READ_WRITE,
PHIDUID_SERVO_1MOTOR_OLD,
PHIDUID_SERVO_4MOTOR_OLD,
PHIDUID_SERVO_1MOTOR_NO_ECHO,
PHIDUID_SERVO_1MOTOR,
PHIDUID_SERVO_4MOTOR_NO_ECHO,
PHIDUID_SERVO_4MOTOR,
PHIDUID_SPATIAL_ACCEL_3AXIS_1049,
PHIDUID_SPATIAL_ACCEL_3AXIS_1041,
PHIDUID_SPATIAL_ACCEL_3AXIS_1043,
PHIDUID_SPATIAL_ACCEL_GYRO_COMPASS_1056,
PHIDUID_SPATIAL_ACCEL_GYRO_COMPASS_1056_NEG_GAIN,
PHIDUID_SPATIAL_ACCEL_GYRO_COMPASS_1042,
PHIDUID_SPATIAL_ACCEL_GYRO_COMPASS_1044,
PHIDUID_STEPPER_BIPOLAR_1MOTOR,
PHIDUID_STEPPER_BIPOLAR_1MOTOR_M3,
PHIDUID_STEPPER_UNIPOLAR_4MOTOR,
PHIDUID_TEMPERATURESENSOR_OLD,
PHIDUID_TEMPERATURESENSOR,
PHIDUID_TEMPERATURESENSOR_AD22100,
PHIDUID_TEMPERATURESENSOR_TERMINAL_BLOCKS,
PHIDUID_TEMPERATURESENSOR_4,
PHIDUID_TEMPERATURESENSOR_IR,
PHIDUID_TEXTLCD_2x20,
PHIDUID_TEXTLCD_2x20_w_8_8_8,
PHIDUID_TEXTLCD_2x20_w_8_8_8_BRIGHTNESS,
PHIDUID_TEXTLCD_ADAPTER,
PHIDUID_TEXTLED_1x8,
PHIDUID_TEXTLED_4x8,
PHIDUID_WEIGHTSENSOR,
PHIDUID_GENERIC,
PHIDUID_FIRMWARE_UPGRADE
} CPhidget_DeviceUID;
/*
* This file is part of libphidget21
*
* Copyright 2006-2015 Phidgets Inc <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>
*/
//Regular Versions
//Versions for Deprecation
/* used in csocketevents.c */
/**
* Opens a Phidget.
* @param phid A phidget handle.
* @param serialNumber Serial number. Specify -1 to open any.
*/
__declspec (dllimport)
int __stdcall CPhidget_open (CPhidgetHandle phid, int serialNumber);
/**
* Opens a Phidget by label.
* @param phid A phidget handle.
* @param label Label string. Labels can be up to 10 characters (UTF-8 encoding). Specify NULL to open any.
*/
__declspec (dllimport)
int __stdcall CPhidget_openLabel (CPhidgetHandle phid, const char *label);
/**
* Closes a Phidget.
* @param phid An opened phidget handle.
*/
__declspec (dllimport)
int __stdcall CPhidget_close (CPhidgetHandle phid);
/**
* Frees a Phidget handle.
* @param phid A closed phidget handle.
*/
__declspec (dllimport)
int __stdcall CPhidget_delete (CPhidgetHandle phid);
/**
* Sets a detach handler callback function. This is called when this Phidget is unplugged from the system.
* @param phid A phidget handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidget_set_OnDetach_Handler (CPhidgetHandle phid, int (__stdcall * fptr) (CPhidgetHandle phid, void *userPtr), void *userPtr);
/**
* Sets an attach handler callback function. This is called when this Phidget is plugged into the system, and is ready for use.
* @param phid A phidget handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidget_set_OnAttach_Handler (CPhidgetHandle phid, int (__stdcall * fptr) (CPhidgetHandle phid, void *userPtr), void *userPtr);
/**
* Sets a server connect handler callback function. This is used for opening Phidgets remotely, and is called when a connection to the sever has been made.
* @param phid A phidget handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidget_set_OnServerConnect_Handler (CPhidgetHandle phid, int (__stdcall * fptr) (CPhidgetHandle phid, void *userPtr), void *userPtr);
/**
* Sets a server disconnect handler callback function. This is used for opening Phidgets remotely, and is called when a connection to the server has been lost.
* @param phid A phidget handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidget_set_OnServerDisconnect_Handler (CPhidgetHandle phid, int (__stdcall * fptr) (CPhidgetHandle phid, void *userPtr), void *userPtr);
/**
* Sets the error handler callback function. This is called when an asynchronous error occurs.
* @param phid A phidget handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidget_set_OnError_Handler (CPhidgetHandle phid, int (__stdcall * fptr) (CPhidgetHandle phid, void *userPtr, int errorCode, const char *errorString), void *userPtr);
/**
* Gets the specific name of a Phidget.
* @param phid An attached phidget handle.
* @param deviceName A pointer which will be set to point to a char array containing the device name.
*/
__declspec (dllimport)
int __stdcall CPhidget_getDeviceName (CPhidgetHandle phid, const char **deviceName);
/**
* Gets the serial number of a Phidget.
* @param phid An attached phidget handle.
* @param serialNumber An int pointer for returning the serial number.
*/
__declspec (dllimport)
int __stdcall CPhidget_getSerialNumber (CPhidgetHandle phid, int *serialNumber);
/**
* Gets the firmware version of a Phidget.
* @param phid An attached phidget handle.
* @param deviceVersion An int pointer for returning the device version.
*/
__declspec (dllimport)
int __stdcall CPhidget_getDeviceVersion (CPhidgetHandle phid, int *deviceVersion);
/**
* Gets the attached status of a Phidget.
* @param phid A phidget handle.
* @param deviceStatus An int pointer for returning the device status. Possible codes are \ref PHIDGET_ATTACHED and \ref PHIDGET_NOTATTACHED.
*/
__declspec (dllimport)
int __stdcall CPhidget_getDeviceStatus (CPhidgetHandle phid, int *deviceStatus);
/**
* Gets the library version. This contains a version number and a build date.
* @param libraryVersion A pointer which will be set to point to a char array containing the library version string.
*/
__declspec (dllimport)
int __stdcall CPhidget_getLibraryVersion (const char **libraryVersion);
/**
* Gets the type (class) of a Phidget.
* @param phid An attached phidget handle.
* @param deviceType A pointer which will be set to a char array containing the device type string.
*/
__declspec (dllimport)
int __stdcall CPhidget_getDeviceType (CPhidgetHandle phid, const char **deviceType);
/**
* Gets the label of a Phidget.
* @param phid An attached phidget handle.
* @param deviceLabel A pointer which will be set to a char array containing the device label string.
*/
__declspec (dllimport)
int __stdcall CPhidget_getDeviceLabel (CPhidgetHandle phid, const char **deviceLabel);
/**
* Sets the label of a Phidget. Note that this is nut supported on very old Phidgets, and not yet supported in Windows.
* @param phid An attached phidget handle.
* @param deviceLabel A string containing the label to be set.
*/
__declspec (dllimport)
int __stdcall CPhidget_setDeviceLabel (CPhidgetHandle phid, const char *deviceLabel);
/**
* Gets the description for an error code.
* @param errorCode The error code to get the description of.
* @param errorString A pointer which will be set to a char array containing the error description string.
*/
__declspec (dllimport)
int __stdcall CPhidget_getErrorDescription (int errorCode, const char **errorString);
/**
* Waits for attachment to happen. This can be called wirght after calling \ref CPhidget_open, as an alternative to using the attach handler.
* @param phid An opened phidget handle.
* @param milliseconds Time to wait for the attachment. Specify 0 to wait forever.
*/
__declspec (dllimport)
int __stdcall CPhidget_waitForAttachment (CPhidgetHandle phid, int milliseconds);
/**
* Gets the server ID of a remotely opened Phidget. This will fail if the Phidget was opened locally.
* @param phid A connected phidget handle.
* @param serverID A pointer which will be set to a char array containing the server ID string.
*/
__declspec (dllimport)
int __stdcall CPhidget_getServerID (CPhidgetHandle phid, const char **serverID);
/**
* Gets the address and port of a remotely opened Phidget. This will fail if the Phidget was opened locally.
* @param phid A connected phidget handle.
* @param address A pointer which will be set to a char array containing the address string.
* @param port An int pointer for returning the port number.
*/
__declspec (dllimport)
int __stdcall CPhidget_getServerAddress (CPhidgetHandle phid, const char **address, int *port);
/**
* Gets the connected to server status of a remotely opened Phidget. This will fail if the Phidget was opened locally.
* @param phid An opened phidget handle.
* @param serverStatus An int pointer for returning the server status. Possible codes are \ref PHIDGET_ATTACHED and \ref PHIDGET_NOTATTACHED.
*/
__declspec (dllimport)
int __stdcall CPhidget_getServerStatus (CPhidgetHandle phid, int *serverStatus);
/**
* Gets the device ID of a Phidget.
* @param phid An attached phidget handle.
* @param deviceID The device ID constant.
*/
__declspec (dllimport)
int __stdcall CPhidget_getDeviceID (CPhidgetHandle phid, CPhidget_DeviceID * deviceID);
/**
* Gets the class of a Phidget Handle.
* @param phid A phidget handle.
* @param deviceClass The device class constant.
*/
__declspec (dllimport)
int __stdcall CPhidget_getDeviceClass (CPhidgetHandle phid, CPhidget_DeviceClass * deviceClass);
/** @} */
/*
* This file is part of libphidget21
*
* Copyright 2006-2015 Phidgets Inc <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>
*/
/** \defgroup phiddict Phidget Dictionary
* These calls are specific to the Phidget Dictionary.
* @{
*/
/**
* Possible reasons for a key event.
*/
typedef enum
{
PHIDGET_DICTIONARY_VALUE_CHANGED = 1, /**< The value of an existing key/value pair changed. */
PHIDGET_DICTIONARY_ENTRY_ADDED, /**< A new key/value pair was added. */
PHIDGET_DICTIONARY_ENTRY_REMOVING, /**< A key is being removed. */
PHIDGET_DICTIONARY_CURRENT_VALUE /**< Initial state received once a handler was added. */
} CPhidgetDictionary_keyChangeReason;
/**
* A Phidget Dictionary handle.
*/
typedef struct _CPhidgetDictionary *CPhidgetDictionaryHandle;
/**
* A Dictionary key listener handle.
*/
typedef struct _CPhidgetDictionaryListener *CPhidgetDictionaryListenerHandle;
/**
* Creates a Phidget Dictionary handle.
* @param dict A pointer to an unallocated phidget dictionary handle.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_create (CPhidgetDictionaryHandle * dict);
/**
* Closes the connection to a Phidget Dictionary.
* @param dict An opened phidget dictionary handle.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_close (CPhidgetDictionaryHandle dict);
/**
* Frees a Phidget Dictionary handle.
* @param dict A closed dictionary handle.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_delete (CPhidgetDictionaryHandle dict);
/**
* Sets the error handler callback function. This is called when an asynchronous error occurs.
* @param dict A phidget dictionary handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_set_OnError_Handler (CPhidgetDictionaryHandle dict,
int (__stdcall * fptr) (CPhidgetDictionaryHandle, void *userPtr, int errorCode, const char *errorString), void *userPtr);
/**
* Adds a key/value pair to the dictionary. Or, changes an existing key's value.
* @param dict A connected dictionary handle.
* @param key The key value.
* @param value The value value.
* @param persistent Whether the key stays in the dictionary after disconnection.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_addKey (CPhidgetDictionaryHandle dict, const char *key, const char *value, int persistent);
/**
* Removes a set of keys from the dictionary.
* @param dict A connected dictionary handle.
* @param pattern A regular expression representing th eset of keys to remove.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_removeKey (CPhidgetDictionaryHandle dict, const char *pattern);
/**
* Callback function for KeyChange events.
* @param dict Dictionary from which this event originated.
* @param userPtr User defined data.
* @param key Key value.
* @param value Value value.
* @param reason Reason for KeyChange event.
*/
typedef int (__stdcall * CPhidgetDictionary_OnKeyChange_Function) (CPhidgetDictionaryHandle dict, void *userPtr, const char *key, const char *value, CPhidgetDictionary_keyChangeReason reason);
/**
* Adds a key listener to an opened dictionary. Note that this should only be called after the connection to the
* dictionary has been made - unlike all other events.
* @param dict A connected dictionary handle.
* @param dictlistener A pointer to an unallocated dictionary key listener handle.
* @param pattern A regular expression representing the set of keys to monitor.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_set_OnKeyChange_Handler (CPhidgetDictionaryHandle dict, CPhidgetDictionaryListenerHandle * dictlistener, const char *pattern,
CPhidgetDictionary_OnKeyChange_Function fptr, void *userPtr);
/**
* Removes a key listener.
* @param dictlistener The dictionary key listener created by \ref CPhidgetDictionary_set_OnKeyChange_Handler
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_remove_OnKeyChange_Handler (CPhidgetDictionaryListenerHandle dictlistener);
/**
* Gets a key value. If more then one key matches, only the first value is returned.
* @param dict A phidget dictionary handle.
* @param key A key value to look up.
* @param value A user array for the value to be stored in. Set to NULL if the key does not exist.
* @param valuelen Length of the value array.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_getKey (CPhidgetDictionaryHandle dict, const char *key, char *value, int valuelen);
/**
* Sets a server connect handler callback function. This is called when a connection to the sever has been made.
* @param dict A phidget dictionary handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_set_OnServerConnect_Handler (CPhidgetDictionaryHandle dict, int (__stdcall * fptr) (CPhidgetDictionaryHandle dict, void *userPtr), void *userPtr);
/**
* Sets a server disconnect handler callback function. This is called when a connection to the server has been lost.
* @param dict A phidget dictionary handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_set_OnServerDisconnect_Handler (CPhidgetDictionaryHandle dict, int (__stdcall * fptr) (CPhidgetDictionaryHandle dict, void *userPtr), void *userPtr);
/**
* Gets the server ID.
* @param dict A connected dictionary handle.
* @param serverID A pointer which will be set to a char array containing the server ID string.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_getServerID (CPhidgetDictionaryHandle dict, const char **serverID);
/**
* Gets the address and port.
* @param dict A connected dictionary handle.
* @param address A pointer which will be set to a char array containing the address string.
* @param port An int pointer for returning the port number.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_getServerAddress (CPhidgetDictionaryHandle dict, const char **address, int *port);
/**
* Gets the connected to server status.
* @param dict An opened dictionary handle.
* @param serverStatus An int pointer for returning the server status. Possible codes are \ref PHIDGET_ATTACHED and \ref PHIDGET_NOTATTACHED.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_getServerStatus (CPhidgetDictionaryHandle dict, int *serverStatus);
/** @} */
/*
* This file is part of libphidget21
*
* Copyright 2006-2015 Phidgets Inc <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>
*/
/*
* This file is part of libphidget21
*
* Copyright 2006-2015 Phidgets Inc <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>
*/
/** \defgroup phidmanager Phidget Manager
* These calls are specific to the Phidget Manager. The Phidget Manager allows enumeration of all connected devices and notification of device
* attach and detach events.
* @{
*/
/**
* A Phidget Manager handle.
*/
typedef struct _CPhidgetManager *CPhidgetManagerHandle;
/**
* Creates a Phidget Manager handle.
* @param phidm A pointer to an empty phidget manager handle.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_create (CPhidgetManagerHandle * phidm);
/**
* Opens a Phidget Manager.
* @param phidm A phidget manager handle.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_open (CPhidgetManagerHandle phidm);
/**
* Closes a Phidget Manager.
* @param phidm An opened phidget manager handle.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_close (CPhidgetManagerHandle phidm);
/**
* Frees a Phidget Manager handle.
* @param phidm A closed phidget manager handle.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_delete (CPhidgetManagerHandle phidm);
/**
* Sets an attach handler callback function. This is called when a Phidget is plugged into the system.
* @param phidm A phidget manager handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_set_OnAttach_Handler (CPhidgetManagerHandle phidm, int (__stdcall * fptr) (CPhidgetHandle phid, void *userPtr), void *userPtr);
/**
* Sets a detach handler callback function. This is called when a Phidget is unplugged from the system.
* @param phidm A phidget manager handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_set_OnDetach_Handler (CPhidgetManagerHandle phidm, int (__stdcall * fptr) (CPhidgetHandle phid, void *userPtr), void *userPtr);
/**
* Gets a list of all currently attached Phidgets. When you are finished with the list, free it with CPhidgetManager_freeAttachedDevicesArray.
* @param phidm An opened phidget manager handle.
* @param phidArray An empty pointer for returning the list of Phidgets. Note that this list is created internally, you don't need to pass in a array.
* @param count An int pointer for returning the list size
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_getAttachedDevices (CPhidgetManagerHandle phidm, CPhidgetHandle * phidArray[], int *count);
/**
* Frees the array that is allocated when CPhidgetManager_getAttachedDevices is called. Since the array is malloced internally to the library, it
* should also be freed internally to the library.
* @param phidArray An array of CPhidgetHandles.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_freeAttachedDevicesArray (CPhidgetHandle phidArray[]);
/**
* Sets the error handler callback function. This is called when an asynchronous error occurs.
* @param phidm A phidget manager handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_set_OnError_Handler (CPhidgetManagerHandle phidm, int (__stdcall * fptr) (CPhidgetManagerHandle phidm, void *userPtr, int errorCode, const char *errorString),
void *userPtr);
/**
* Sets a server connect handler callback function. This is used for opening Phidget Managers remotely, and is called when a connection to the sever has been made.
* @param phidm A phidget manager handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_set_OnServerConnect_Handler (CPhidgetManagerHandle phidm, int (__stdcall * fptr) (CPhidgetManagerHandle phidm, void *userPtr), void *userPtr);
/**
* Sets a server disconnect handler callback function. This is used for opening Phidget Managers remotely, and is called when a connection to the server has been lost.
* @param phidm A phidget manager handle.
* @param fptr Callback function pointer.
* @param userPtr A pointer for use by the user - this value is passed back into the callback function.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_set_OnServerDisconnect_Handler (CPhidgetManagerHandle phidm, int (__stdcall * fptr) (CPhidgetManagerHandle phidm, void *userPtr), void *userPtr);
/**
* Gets the server ID of a remotely opened Phidget Manager. This will fail if the manager was opened locally.
* @param phidm A connected phidget manager handle.
* @param serverID A pointer which will be set to a char array containing the server ID string.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_getServerID (CPhidgetManagerHandle phidm, const char **serverID);
/**
* Gets the address and port of a remotely opened Phidget Manager. This will fail if the manager was opened locally.
* @param phidm A connected phidget manager handle.
* @param address A pointer which will be set to a char array containing the address string.
* @param port An int pointer for returning the port number.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_getServerAddress (CPhidgetManagerHandle phidm, const char **address, int *port);
/**
* Gets the connected to server status of a remotely opened Phidget Manager. This will fail if the manager was opened locally.
* @param phidm An opened phidget manager handle.
* @param serverStatus An int pointer for returning the server status. Possible codes are \ref PHIDGET_ATTACHED and \ref PHIDGET_NOTATTACHED.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_getServerStatus (CPhidgetManagerHandle phidm, int *serverStatus);
/** @} */
/** \addtogroup phidcommon
* @{
*/
/**
* Opens a Phidget remotely by ServerID. Note that this requires Bonjour (mDNS) to be running on both the host and the server.
* @param phid A phidget handle.
* @param serial Serial number. Specify -1 to open any.
* @param serverID Server ID. Specify NULL to open any.
* @param password Password. Can be NULL if the server is running unsecured.
*/
__declspec (dllimport)
int __stdcall CPhidget_openRemote (CPhidgetHandle phid, int serial, const char *serverID, const char *password);
/**
* Opens a Phidget remotely by ServerID. Note that this requires Bonjour (mDNS) to be running on both the host and the server.
* @param phid A phidget handle.
* @param label Label string. Labels can be up to 10 characters (UTF-8 encoding). Specify NULL to open any.
* @param serverID Server ID. Specify NULL to open any.
* @param password Password. Can be NULL if the server is running unsecured.
*/
__declspec (dllimport)
int __stdcall CPhidget_openLabelRemote (CPhidgetHandle phid, const char *label, const char *serverID, const char *password);
/**
* Opens a Phidget remotely by address and port, with optional serial number.
* @param phid A phidget handle.
* @param serial Serial number. Specify -1 to open any.
* @param address Address. This can be a hostname or IP address.
* @param port Port number. Default is 5001.
* @param password Password. Can be NULL if the server is running unsecured.
*/
__declspec (dllimport)
int __stdcall CPhidget_openRemoteIP (CPhidgetHandle phid, int serial, const char *address, int port, const char *password);
/**
* Opens a Phidget remotely by address and port, with optional label.
* @param phid A phidget handle.
* @param label Label string. Labels can be up to 10 characters (UTF-8 encoding). Specify NULL to open any.
* @param address Address. This can be a hostname or IP address.
* @param port Port number. Default is 5001.
* @param password Password. Can be NULL if the server is running unsecured.
*/
__declspec (dllimport)
int __stdcall CPhidget_openLabelRemoteIP (CPhidgetHandle phid, const char *label, const char *address, int port, const char *password);
/** @} */
/** \addtogroup phidmanager
* @{
*/
/**
* Opens a Phidget manager remotely by ServerID. Note that this requires Bonjour (mDNS) to be running on both the host and the server.
* @param phidm A phidget manager handle.
* @param serverID Server ID. Specify NULL to open any.
* @param password Password. Can be NULL if the server is running unsecured.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_openRemote (CPhidgetManagerHandle phidm, const char *serverID, const char *password);
/**
* Opens a Phidget manager remotely by address and port.
* @param phidm A phidget manager handle.
* @param address Address. This can be a hostname or IP address.
* @param port Port number. Default is 5001.
* @param password Password. Can be NULL if the server is running unsecured.
*/
__declspec (dllimport)
int __stdcall CPhidgetManager_openRemoteIP (CPhidgetManagerHandle phidm, const char *address, int port, const char *password);
/** @} */
/** \addtogroup phiddict
* @{
*/
/**
* Opens a Phidget dictionary by ServerID. Note that this requires Bonjour (mDNS) to be running on both the host and the server.
* @param dict A phidget dictionary handle.
* @param serverID Server ID. Specify NULL to open any.
* @param password Password. Can be NULL if the server is running unsecured.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_openRemote (CPhidgetDictionaryHandle dict, const char *serverID, const char *password);
/**
* Opens a Phidget dictionary by address and port.
* @param dict A phidget dictionary handle.
* @param address Address. This can be a hostname or IP address.
* @param port Port number. Default is 5001.
* @param password Password. Can be NULL if the server is running unsecured.
*/
__declspec (dllimport)
int __stdcall CPhidgetDictionary_openRemoteIP (CPhidgetDictionaryHandle dict, const char *address, int port, const char *password);
/** @} */
/*
* This file is part of libphidget21
*
* Copyright 2006-2015 Phidgets Inc <[email protected]>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>
*/
/** \defgroup phidlog Phidget Logging
* Logging is provided mainly for debugging purposes. Enabling logging will output internal library
* information that can be used to find bugs with the help of Phidgetd Inc. Alternatively, the user
* can enable and write to the log for their own uses.
* @{
*/
typedef enum