This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmove_s_r.cpp
112 lines (89 loc) · 2.67 KB
/
move_s_r.cpp
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
/*
* Copyright 2017 Patrick Pedersen <ctx.xda@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Author :
* Patrick Pedersen <ctx.xda@gmail.com>
* DESCRIPTION :move_s_testing
* The following file defines all functions prototyped in move_s_r.h
*/
#include <Interval.h>
#include "move_s_r.h"
/* --- struct speaker --- */
/* Returns High signal if volume has surpased filter value
* For reference volume readings, see README.md */
bool speaker::sig(unsigned int filter) {
for (int i = 0; i < SPK_NOISE_FILTERATION_ATTEMPTS; i++) {
if (analogRead(pin) < filter) {
return HIGH;
}
}
return LOW;
}
/* Returns High signal if volume meets the
* filter threshold and has been counted n times
* For reference volume readings, see README.md */
bool speaker::sig(unsigned int lowest, unsigned int highest, int count) {
int read;
int min = 0;
while(min < count) {
int i;
for (i = 0; i < SPK_NOISE_FILTERATION_ATTEMPTS; i++) {
read = analogRead(pin);
if (read > lowest && read < highest) {
min++;
break;
}
}
if (i == SPK_NOISE_FILTERATION_ATTEMPTS) {
return LOW;
}
}
return HIGH;
}
/* --- struct led --- */
bool led::state() {
return !digitalRead(pin); // Invertion due to pull-up resistor on input pin
}
/* --- struct move_s --- */
/* Check if device is paired */
bool move_s_r::paired() {
timestamp stamp(µs);
stamp.setStamp(BT_LED_PAIRING_INTERVAL_USEC);
while(bt_led->state() == HIGH) {
if (stamp.expired())
return true;
}
/* BT LED switched state before stamp has expired */
return false;
}
/* BT LED in sleep mode */
bool move_s_r::pairing_sleepMode() {
timestamp stamp(µs);
stamp.setStamp(BT_LED_PAIRING_INTERVAL_USEC);
while(bt_led->state() == LOW) {
if (stamp.expired())
return true;
}
/* LED switched state before stamp has expired */
return false;
}
/* BT LED in blinking mode */
bool move_s_r::pairing_blinkMode() {
return (!paired() && !pairing_sleepMode());
}
/* Automatically determine bt mode */
move_s_bt_mode move_s_r::mode() {
return (paired() ? paired_mode : (pairing_sleepMode() ? pair_sleep_mode : pair_blink_mode));
}