arduino-blume/teng/teng.ino

161 lines
4.2 KiB
Arduino
Raw Normal View History

2023-06-13 19:59:34 +02:00
/*
*
*/
#include <Arduino.h>
#include <ArduinoBLE.h>
2023-06-14 19:22:11 +02:00
#include "settings.hpp"
#include "status.hpp"
#include "services.hpp"
2023-06-19 15:55:21 +02:00
// TODO
/* std::array<uint16_t, 10000> valueBuffer; // 20kB buffer for readings */
/* auto valueBufferWriteIter = valueBuffer.begin(); // points past the element that was last written */
2023-06-13 19:59:34 +02:00
void blinkLED(unsigned n=5, unsigned delay_=200) {
for (unsigned i = 0; i < n; i++) {
digitalWrite(LED_BUILTIN, HIGH);
delay(delay_);
digitalWrite(LED_BUILTIN, LOW);
delay(delay_);
}
}
2023-06-14 19:22:11 +02:00
2023-06-16 17:54:06 +02:00
uint16_t MAX_DEVIATION = 0;
uint16_t BASELINE = 0;
2023-06-13 19:59:34 +02:00
void measureBaseline(unsigned nMeas, unsigned interval=50) {
uint64_t value = 0;
unsigned minVal = 1023;
unsigned maxVal = 0;
for (unsigned i = 0; i < nMeas; i++) {
unsigned reading = analogRead(PIN_TENG);
value += reading;
delay(interval);
if (reading > maxVal) { maxVal = reading; }
if (reading < minVal) { minVal = reading; }
}
BASELINE = value / nMeas;
if (BASELINE - minVal > maxVal - BASELINE) {
MAX_DEVIATION = BASELINE - minVal;
}
else {
MAX_DEVIATION = maxVal - BASELINE;
}
}
2023-06-14 19:22:11 +02:00
void setup() {
setStatus(DeviceStatus::BUSY);
2023-06-13 19:59:34 +02:00
Serial.begin(9600);
/* // wait until available */
2023-06-14 19:22:11 +02:00
/* while (!Serial); */
blinkLED(2);
2023-06-13 19:59:34 +02:00
if (!BLE.begin()) {
Serial.println("starting Bluetooth® Low Energy module failed!");
2023-06-14 19:22:11 +02:00
setStatus(DeviceStatus::ERROR);
while(true);
2023-06-13 19:59:34 +02:00
}
2023-06-14 19:22:11 +02:00
/* BLE.setDeviceName("ArduinoTENG"); */
BLE.setLocalName("ArduinoTENG");
byte data[10] = "\xFF\xFFMQU@TUM"; // 0xFFFF manufacturer id for testing
BLE.setManufacturerData(data, 10);
2023-06-16 17:54:06 +02:00
initServices();
2023-06-14 19:22:11 +02:00
BLE.addService(tengService);
BLE.setAdvertisedService(tengService);
BLE.setConnectable(true);
blinkLED(3);
2023-06-13 19:59:34 +02:00
BLE.advertise();
2023-06-14 19:22:11 +02:00
setStatus(DeviceStatus::WAIT_CONNECT);
2023-06-13 19:59:34 +02:00
}
/* constexpr int max_val = 1023 / 5 * 3.5; // 1023 max val for 5V */
// the loop function runs over and over again forever
void loop() {
2023-06-14 19:22:11 +02:00
blinkLED(3, 100);
// listen for Bluetooth® Low Energy peripherals to connect:
BLEDevice central = BLE.central();
// if a central is connected to peripheral:
if (central) {
setStatus(DeviceStatus::READING);
Serial.print("Connected to central: ");
Serial.println(central.address());
while (central.connected()) {
if (tengCommand.written()) {
switch (tengCommand.value()) {
case Command::NOOP:
setStatus(DeviceStatus::BUSY);
delay(1000);
break;
case Command::MEASURE_BASELINE:
setStatus(DeviceStatus::MEASURING_BASELINE);
measureBaseline(100);
break;
default:
setStatus(DeviceStatus::ERROR);
delay(1000);
break;
}
setStatus(DeviceStatus::READING);
}
int val = analogRead(PIN_TENG);
tengReading.writeValue(static_cast<uint16_t>(val));
Serial.print(val, DEC);
val -= BASELINE;
if (val < 0) { val = -val; }
Serial.print("/");
Serial.println(val, DEC);
delay(300);
}
setStatus(DeviceStatus::WAIT_CONNECT);
// when the central disconnects, notify the user
Serial.print("Disconnected from central MAC: ");
Serial.println(central.address());
}
else {
BLE.advertise();
}
return;
2023-06-13 19:59:34 +02:00
int led_red = LOW;
int led_yellow = LOW;
int led_green = LOW;
int val = analogRead(PIN_TENG);
Serial.print(val, DEC);
val -= BASELINE;
if (val < 0) { val = -val; }
Serial.print("/");
Serial.println(val, DEC);
if (val >= MAX_DEVIATION * 1) {
led_green = HIGH;
}
if (val >= MAX_DEVIATION * 2) {
led_yellow = HIGH;
}
if (val >= MAX_DEVIATION * 3) {
led_red = HIGH;
}
digitalWrite(LED_RED, led_red);
digitalWrite(LED_YELLOW, led_yellow);
digitalWrite(LED_GREEN, led_green);
delay(100);
}