blob: f0006336616209911a7a95fec84838f1a4a68498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "battery.hpp"
#include <cstdint>
#include "catch2/catch.hpp"
namespace drivers {
TEST_CASE("battery measurement", "[integration]") {
REQUIRE(drivers::init_adc() == ESP_OK);
SECTION("voltage is within range") {
uint32_t voltage = read_battery_voltage();
REQUIRE(voltage <= 2200); // Plugged in, no battery.
REQUIRE(voltage >= 1000);
}
}
} // namespace drivers
|