10 ESP_LOGCONFIG(TAG,
"Setting up FS3000...");
14 static const uint16_t RAW_DATA_POINTS_1005[9] = {409, 915, 1522, 2066, 2523, 2908, 3256, 3572, 3686};
15 static const float MPS_DATA_POINTS_1005[9] = {0.0, 1.07, 2.01, 3.0, 3.97, 4.96, 5.98, 6.99, 7.23};
17 std::copy(RAW_DATA_POINTS_1005, RAW_DATA_POINTS_1005 + 9, this->
raw_data_points_);
18 std::copy(MPS_DATA_POINTS_1005, MPS_DATA_POINTS_1005 + 9, this->
mps_data_points_);
21 static const uint16_t RAW_DATA_POINTS_1015[13] = {409, 1203, 1597, 1908, 2187, 2400, 2629,
22 2801, 3006, 3178, 3309, 3563, 3686};
23 static const float MPS_DATA_POINTS_1015[13] = {0.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 13.0, 15.0};
25 std::copy(RAW_DATA_POINTS_1015, RAW_DATA_POINTS_1015 + 13, this->
raw_data_points_);
26 std::copy(MPS_DATA_POINTS_1015, MPS_DATA_POINTS_1015 + 13, this->
mps_data_points_);