File tree 2 files changed +11
-5
lines changed
2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
# ESP32 BLE Real-time Variometer
2
2
### Accelerometer & Baromectric Variometer implemented on ESP32 Dev Board using C++
3
- Goal is to build an open source variometer that can compete with comercial options to provide real time feedback for free flight pilots.
3
+ Goal is to build an open source variometer that can compete with commercial options to provide real time feedback for free flight pilots.
4
+
5
+ ## Todo:
6
+ - [ ] Refractor code base to remove "magic numbers"
7
+ - [ ] Add other NMEA sentence options
8
+ - [x] Intergrate with iOS over BLE
9
+ - [ ] Flight test with XCTracer to compare data
10
+ - [ ] Compile binary for release
11
+ - [ ] Release circuit diagram
12
+
4
13
5
- ## Things to note:
6
- - Currently a work in progress, feel free to make a pull request.
7
- - Feel free to contact me with any questions
8
14
## License
9
15
10
16
MIT
Original file line number Diff line number Diff line change 18
18
#define CA 0.5
19
19
#define ACCEL_THRESHOLD 0.1
20
20
#define BAUD 9600
21
- #define SAMPLING_RATE 25 // 20HZ
21
+ #define SAMPLING_RATE 25 // 40HZ
22
22
#define SERVICE_UUID " 4fafc201-1fb5-459e-8fcc-c5c9c331914b"
23
23
#define CHARACTERISTIC_UUID " beb5483e-36e1-4688-b7f5-ea07361b26a8"
24
24
You can’t perform that action at this time.
0 commit comments