aboutsummaryrefslogtreecommitdiffstats
path: root/examples/manager.c
diff options
context:
space:
mode:
authorJonathan McCrohan <jmccrohan@gmail.com>2012-12-05 23:35:47 +0000
committerJonathan McCrohan <jmccrohan@gmail.com>2012-12-05 23:35:47 +0000
commitd793256d203fde3090d3729f70e0595674fa48d6 (patch)
tree3ef1aefbe45529a2063630b05a7be6dcd2c13fbc /examples/manager.c
parent3d9394c18ca528ac78197007d1a2dfff6f401920 (diff)
parent8f3c91e91b634adaca77dac6cf314445cceefc78 (diff)
downloadlibphidget21-d793256d203fde3090d3729f70e0595674fa48d6.tar.gz
Merge tag 'upstream/2.1.8.20120912'
Diffstat (limited to 'examples/manager.c')
-rw-r--r--examples/manager.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/manager.c b/examples/manager.c
index 74bddbd..d44acfa 100644
--- a/examples/manager.c
+++ b/examples/manager.c
@@ -29,7 +29,7 @@ int gotAttach(CPhidgetHandle phid, void *ptr) {
CPhidget_getDeviceLabel(phid, &label);
CPhidget_getSerialNumber(phid, &serial);
CPhidget_getDeviceVersion(phid, &version);
- CPhidget_getDeviceType(phid, &id);
+ CPhidget_getDeviceName(phid, &id);
printf("Device Added: %s, Serial: %d, Version: %d Label: %s\n",id,serial,version,label);
return 0;
@@ -42,7 +42,7 @@ int gotDetach(CPhidgetHandle phid, void *ptr) {
//print out some info
CPhidget_getSerialNumber(phid, &serial);
CPhidget_getDeviceVersion(phid, &version);
- CPhidget_getDeviceType((CPhidgetHandle)phid,(const char **)&id);
+ CPhidget_getDeviceName((CPhidgetHandle)phid,(const char **)&id);
printf("Device Removed: %s, Serial: %d, Version: %d\n",id,serial,version);
return 0;
@@ -53,12 +53,13 @@ int main()
{
CPhidgetManagerHandle phidm;
- CPhidget_enableLogging(PHIDGET_LOG_VERBOSE, NULL);
+ //CPhidget_enableLogging(PHIDGET_LOG_VERBOSE, NULL);
CPhidgetManager_create(&phidm);
CPhidgetManager_set_OnAttach_Handler(phidm, gotAttach, NULL);
CPhidgetManager_set_OnDetach_Handler(phidm, gotDetach, NULL);
CPhidgetManager_open(phidm);
+ //CPhidgetManager_openRemote(phidm, NULL, NULL);
signal (SIGTERM, sighandler);
signal (SIGINT, sighandler);