@@ -78,7 +78,7 @@ void setup(){
78
78
service.addCharacteristic (airQualityCharacteristic);
79
79
/* _________________________________________________________SOUND_INTENSITY */
80
80
service.addCharacteristic (sndIntensityCharacteristic);
81
- /* ______!!! NOT AVAILABLE (should be delete?) !!!______________SOUND_PITCH */
81
+ /* _____________________________________________________________SOUND_PITCH */
82
82
service.addCharacteristic (sndPitchCharacteristic);
83
83
/* _________________________________________________________________INPUT_A */
84
84
service.addCharacteristic (inputACharacteristic);
@@ -164,19 +164,8 @@ void updateSubscribedCharacteristics(){
164
164
165
165
166
166
/* _______________________________________________________________PROXIMITY */
167
- if (proximityCharacteristic.subscribed ()){ // need to be fixed
168
-
167
+ if (proximityCharacteristic.subscribed ()){
169
168
proximityCharacteristic.writeValue (science_kit.getProximity ());
170
-
171
-
172
- /*
173
- if (science_kit.getUltrasonicIsConnected()){
174
- proximityCharacteristic.writeValue(science_kit.getDistance()*100.0);
175
- }
176
- else{
177
- proximityCharacteristic.writeValue(-1.0);
178
- }
179
- */
180
169
}
181
170
182
171
@@ -241,19 +230,14 @@ void updateSubscribedCharacteristics(){
241
230
sndIntensityCharacteristic.writeValue (science_kit.getMicrophoneRMS ());
242
231
}
243
232
244
- /* ______!!! NOT AVAILABLE (should be delete?) !!!______________SOUND_PITCH */
245
- /* NOTE: pith is frequency (not available because FFT cannot be performed) */
233
+ /* _____________________________________________________________SOUND_PITCH */
246
234
if (sndPitchCharacteristic.subscribed ()){
247
235
sndPitchCharacteristic.writeValue (science_kit.getExternalTemperature ());
248
236
}
249
237
250
238
/* _________________________________________________________________INPUT_A */
251
239
if (inputACharacteristic.subscribed ()){
252
240
inputACharacteristic.writeValue (science_kit.getInputA ());
253
-
254
- /* NOTE_ OLD CODE USED FOR DEBUG
255
- inputACharacteristic.writeValue(science_kit.getFrequency1());
256
- */
257
241
}
258
242
259
243
/* _________________________________________________________________INPUT_B */
0 commit comments