Skip to content

Commit

Permalink
Add missing string import to headers
Browse files Browse the repository at this point in the history
Add string import to BLEProtocol and Measurement header that
are defining strings in their API.
  • Loading branch information
psachs committed Jun 19, 2024
1 parent cce91ed commit 93c7cf9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/BLEProtocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include "Arduino.h"
#include "SignalType.h"
#include <map>
#include <string>

/**
* Refer to
Expand Down
1 change: 1 addition & 0 deletions src/Measurement.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include "SensorType.h"
#include "SignalType.h"
#include <Arduino.h>
#include <string>

struct DataPoint {
unsigned long t_offset = 0;
Expand Down

0 comments on commit 93c7cf9

Please sign in to comment.