-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbhaptics-ble-bt-serial.cpp
70 lines (56 loc) · 1.98 KB
/
bhaptics-ble-bt-serial.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
// Override you configs in this file (Ctrl+Click)
#include "config/all.h"
#include <Arduino.h>
#include <Wire.h>
#include "senseshift.h"
#include <bh_utils.hpp>
#include <connection_bhble.hpp>
#include <output_writers/pwm.hpp>
#include <HardwareSerial.h>
#include <BluetoothSerial.h>
using namespace OH;
using namespace BH;
extern SenseShift App;
SenseShift* app = &App;
BluetoothSerial SerialBT;
BluetoothSerial* btSerial = &SerialBT;
static const size_t bhLayoutSize = BH_LAYOUT_TACTAL_SIZE;
static const oh_output_point_t* bhLayout[bhLayoutSize] = BH_LAYOUT_TACTAL;
class BLECallbacks : public BHBLEConnectionCallbacks {
public:
void postInit() {
btSerial->begin("SenseShift Serial");
}
};
void setupMode() {
// Configure PWM pins to their positions on the face
auto faceOutputs = PlaneMapper_Margin::mapMatrixCoordinates<AbstractActuator>({
// clang-format off
{new PWMOutputWriter(32), new PWMOutputWriter(33), new PWMOutputWriter(25), new PWMOutputWriter(26), new PWMOutputWriter(27), new PWMOutputWriter(14)},
// clang-format on
});
auto* face = new HapticPlane_Closest(faceOutputs);
app->getHapticBody()->addComponent(OUTPUT_PATH_ACCESSORY, face);
app->getHapticBody()->setup();
uint8_t serialNumber[BH_SERIAL_NUMBER_LENGTH] = BH_SERIAL_NUMBER;
ConnectionBHBLE_Config config = {
.deviceName = BLUETOOTH_NAME,
.appearance = BH_BLE_APPEARANCE,
.serialNumber = serialNumber,
};
auto* bhBleConnection = new ConnectionBHBLE(config, [](std::string& value)->void {
plainOutputTransformer(app->getHapticBody(), value, bhLayout, bhLayoutSize, OUTPUT_PATH_ACCESSORY);
}, app);
bhBleConnection->setCallbacks(new BLECallbacks());
bhBleConnection->begin();
}
void loopMode() {
// This way is suboptimal, but hardware interrupts for Serial are not supported by the Arduino framework
if (btSerial->available()) {
Serial.print(btSerial->read());
}
if (Serial.available()) {
btSerial->write(Serial.read());
}
sleep(20);
}