From 0ea358ab8157d743dc07f12bde5fb34d03a02522 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Wed, 13 Sep 2023 10:09:04 +1000 Subject: Make the onboarding flow basically work. Much still to do! --- src/drivers/nvs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/drivers/nvs.cpp') diff --git a/src/drivers/nvs.cpp b/src/drivers/nvs.cpp index 0a466b16..11dde08c 100644 --- a/src/drivers/nvs.cpp +++ b/src/drivers/nvs.cpp @@ -190,7 +190,7 @@ auto NvsStorage::AmpCurrentVolume(uint16_t val) -> std::future { auto NvsStorage::HasShownOnboarding() -> std::future { return writer_->Dispatch([&]() -> bool { - uint8_t out = true; + uint8_t out = false; nvs_get_u8(handle_, kKeyOnboarded, &out); return out; }); -- cgit v1.2.3