-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyocto_lightsensor.cpp
More file actions
324 lines (303 loc) · 11 KB
/
yocto_lightsensor.cpp
File metadata and controls
324 lines (303 loc) · 11 KB
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
/*********************************************************************
*
* $Id: pic24config.php 28955 2017-10-19 22:44:09Z mvuilleu $
*
* Implements yFindLightSensor(), the high-level API for LightSensor functions
*
* - - - - - - - - - License information: - - - - - - - - -
*
* Copyright (C) 2011 and beyond by Yoctopuce Sarl, Switzerland.
*
* Yoctopuce Sarl (hereafter Licensor) grants to you a perpetual
* non-exclusive license to use, modify, copy and integrate this
* file into your software for the sole purpose of interfacing
* with Yoctopuce products.
*
* You may reproduce and distribute copies of this file in
* source or object form, as long as the sole purpose of this
* code is to interface with Yoctopuce products. You must retain
* this notice in the distributed source file.
*
* You should refer to Yoctopuce General Terms and Conditions
* for additional information regarding your rights and
* obligations.
*
* THE SOFTWARE AND DOCUMENTATION ARE PROVIDED 'AS IS' WITHOUT
* WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
* WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO
* EVENT SHALL LICENSOR BE LIABLE FOR ANY INCIDENTAL, SPECIAL,
* INDIRECT OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA,
* COST OF PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR
* SERVICES, ANY CLAIMS BY THIRD PARTIES (INCLUDING BUT NOT
* LIMITED TO ANY DEFENSE THEREOF), ANY CLAIMS FOR INDEMNITY OR
* CONTRIBUTION, OR OTHER SIMILAR COSTS, WHETHER ASSERTED ON THE
* BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE), BREACH OF
* WARRANTY, OR OTHERWISE.
*
*********************************************************************/
#define _CRT_SECURE_NO_DEPRECATE //do not use windows secure crt
#include "yocto_lightsensor.h"
#include "yapi/yjson.h"
#include "yapi/yapi.h"
#include <string.h>
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
#define __FILE_ID__ "lightsensor"
YLightSensor::YLightSensor(const string& func): YSensor(func)
//--- (YLightSensor initialization)
,_measureType(MEASURETYPE_INVALID)
,_valueCallbackLightSensor(NULL)
,_timedReportCallbackLightSensor(NULL)
//--- (end of YLightSensor initialization)
{
_className="LightSensor";
}
YLightSensor::~YLightSensor()
{
//--- (YLightSensor cleanup)
//--- (end of YLightSensor cleanup)
}
//--- (YLightSensor implementation)
// static attributes
int YLightSensor::_parseAttr(YJSONObject* json_val)
{
if(json_val->has("measureType")) {
_measureType = (Y_MEASURETYPE_enum)json_val->getInt("measureType");
}
return YSensor::_parseAttr(json_val);
}
int YLightSensor::set_currentValue(double newval)
{
string rest_val;
int res;
yEnterCriticalSection(&_this_cs);
try {
char buf[32]; sprintf(buf,"%d", (int)floor(newval * 65536.0 + 0.5)); rest_val = string(buf);
res = _setAttr("currentValue", rest_val);
} catch (std::exception) {
yLeaveCriticalSection(&_this_cs);
throw;
}
yLeaveCriticalSection(&_this_cs);
return res;
}
/**
* Changes the sensor-specific calibration parameter so that the current value
* matches a desired target (linear scaling).
*
* @param calibratedVal : the desired target value.
*
* Remember to call the saveToFlash() method of the module if the
* modification must be kept.
*
* @return YAPI_SUCCESS if the call succeeds.
*
* On failure, throws an exception or returns a negative error code.
*/
int YLightSensor::calibrate(double calibratedVal)
{
string rest_val;
char buf[32]; sprintf(buf,"%d", (int)floor(calibratedVal * 65536.0 + 0.5)); rest_val = string(buf);
return _setAttr("currentValue", rest_val);
}
/**
* Returns the type of light measure.
*
* @return a value among Y_MEASURETYPE_HUMAN_EYE, Y_MEASURETYPE_WIDE_SPECTRUM, Y_MEASURETYPE_INFRARED,
* Y_MEASURETYPE_HIGH_RATE and Y_MEASURETYPE_HIGH_ENERGY corresponding to the type of light measure
*
* On failure, throws an exception or returns Y_MEASURETYPE_INVALID.
*/
Y_MEASURETYPE_enum YLightSensor::get_measureType(void)
{
Y_MEASURETYPE_enum res;
yEnterCriticalSection(&_this_cs);
try {
if (_cacheExpiration <= YAPI::GetTickCount()) {
if (this->_load_unsafe(YAPI::DefaultCacheValidity) != YAPI_SUCCESS) {
{
yLeaveCriticalSection(&_this_cs);
return YLightSensor::MEASURETYPE_INVALID;
}
}
}
res = _measureType;
} catch (std::exception) {
yLeaveCriticalSection(&_this_cs);
throw;
}
yLeaveCriticalSection(&_this_cs);
return res;
}
/**
* Changes the light sensor type used in the device. The measure can either
* approximate the response of the human eye, focus on a specific light
* spectrum, depending on the capabilities of the light-sensitive cell.
* Remember to call the saveToFlash() method of the module if the
* modification must be kept.
*
* @param newval : a value among Y_MEASURETYPE_HUMAN_EYE, Y_MEASURETYPE_WIDE_SPECTRUM,
* Y_MEASURETYPE_INFRARED, Y_MEASURETYPE_HIGH_RATE and Y_MEASURETYPE_HIGH_ENERGY corresponding to the
* light sensor type used in the device
*
* @return YAPI_SUCCESS if the call succeeds.
*
* On failure, throws an exception or returns a negative error code.
*/
int YLightSensor::set_measureType(Y_MEASURETYPE_enum newval)
{
string rest_val;
int res;
yEnterCriticalSection(&_this_cs);
try {
char buf[32]; sprintf(buf, "%d", newval); rest_val = string(buf);
res = _setAttr("measureType", rest_val);
} catch (std::exception) {
yLeaveCriticalSection(&_this_cs);
throw;
}
yLeaveCriticalSection(&_this_cs);
return res;
}
/**
* Retrieves a light sensor for a given identifier.
* The identifier can be specified using several formats:
* <ul>
* <li>FunctionLogicalName</li>
* <li>ModuleSerialNumber.FunctionIdentifier</li>
* <li>ModuleSerialNumber.FunctionLogicalName</li>
* <li>ModuleLogicalName.FunctionIdentifier</li>
* <li>ModuleLogicalName.FunctionLogicalName</li>
* </ul>
*
* This function does not require that the light sensor is online at the time
* it is invoked. The returned object is nevertheless valid.
* Use the method YLightSensor.isOnline() to test if the light sensor is
* indeed online at a given time. In case of ambiguity when looking for
* a light sensor by logical name, no error is notified: the first instance
* found is returned. The search is performed first by hardware name,
* then by logical name.
*
* If a call to this object's is_online() method returns FALSE although
* you are certain that the matching device is plugged, make sure that you did
* call registerHub() at application initialization time.
*
* @param func : a string that uniquely characterizes the light sensor
*
* @return a YLightSensor object allowing you to drive the light sensor.
*/
YLightSensor* YLightSensor::FindLightSensor(string func)
{
YLightSensor* obj = NULL;
int taken = 0;
if (YAPI::_apiInitialized) {
yEnterCriticalSection(&YAPI::_global_cs);
taken = 1;
}try {
obj = (YLightSensor*) YFunction::_FindFromCache("LightSensor", func);
if (obj == NULL) {
obj = new YLightSensor(func);
YFunction::_AddToCache("LightSensor", func, obj);
}
} catch (std::exception) {
if (taken) yLeaveCriticalSection(&YAPI::_global_cs);
throw;
}
if (taken) yLeaveCriticalSection(&YAPI::_global_cs);
return obj;
}
/**
* Registers the callback function that is invoked on every change of advertised value.
* The callback is invoked only during the execution of ySleep or yHandleEvents.
* This provides control over the time when the callback is triggered. For good responsiveness, remember to call
* one of these two functions periodically. To unregister a callback, pass a NULL pointer as argument.
*
* @param callback : the callback function to call, or a NULL pointer. The callback function should take two
* arguments: the function object of which the value has changed, and the character string describing
* the new advertised value.
* @noreturn
*/
int YLightSensor::registerValueCallback(YLightSensorValueCallback callback)
{
string val;
if (callback != NULL) {
YFunction::_UpdateValueCallbackList(this, true);
} else {
YFunction::_UpdateValueCallbackList(this, false);
}
_valueCallbackLightSensor = callback;
// Immediately invoke value callback with current value
if (callback != NULL && this->isOnline()) {
val = _advertisedValue;
if (!(val == "")) {
this->_invokeValueCallback(val);
}
}
return 0;
}
int YLightSensor::_invokeValueCallback(string value)
{
if (_valueCallbackLightSensor != NULL) {
_valueCallbackLightSensor(this, value);
} else {
YSensor::_invokeValueCallback(value);
}
return 0;
}
/**
* Registers the callback function that is invoked on every periodic timed notification.
* The callback is invoked only during the execution of ySleep or yHandleEvents.
* This provides control over the time when the callback is triggered. For good responsiveness, remember to call
* one of these two functions periodically. To unregister a callback, pass a NULL pointer as argument.
*
* @param callback : the callback function to call, or a NULL pointer. The callback function should take two
* arguments: the function object of which the value has changed, and an YMeasure object describing
* the new advertised value.
* @noreturn
*/
int YLightSensor::registerTimedReportCallback(YLightSensorTimedReportCallback callback)
{
YSensor* sensor = NULL;
sensor = this;
if (callback != NULL) {
YFunction::_UpdateTimedReportCallbackList(sensor, true);
} else {
YFunction::_UpdateTimedReportCallbackList(sensor, false);
}
_timedReportCallbackLightSensor = callback;
return 0;
}
int YLightSensor::_invokeTimedReportCallback(YMeasure value)
{
if (_timedReportCallbackLightSensor != NULL) {
_timedReportCallbackLightSensor(this, value);
} else {
YSensor::_invokeTimedReportCallback(value);
}
return 0;
}
YLightSensor *YLightSensor::nextLightSensor(void)
{
string hwid;
if(YISERR(_nextFunction(hwid)) || hwid=="") {
return NULL;
}
return YLightSensor::FindLightSensor(hwid);
}
YLightSensor* YLightSensor::FirstLightSensor(void)
{
vector<YFUN_DESCR> v_fundescr;
YDEV_DESCR ydevice;
string serial, funcId, funcName, funcVal, errmsg;
if(YISERR(YapiWrapper::getFunctionsByClass("LightSensor", 0, v_fundescr, sizeof(YFUN_DESCR), errmsg)) ||
v_fundescr.size() == 0 ||
YISERR(YapiWrapper::getFunctionInfo(v_fundescr[0], ydevice, serial, funcId, funcName, funcVal, errmsg))) {
return NULL;
}
return YLightSensor::FindLightSensor(serial+"."+funcId);
}
//--- (end of YLightSensor implementation)
//--- (YLightSensor functions)
//--- (end of YLightSensor functions)