mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-23 14:18:28 +02:00
15 lines
216 B
C++
15 lines
216 B
C++
#pragma once
|
|
|
|
#ifdef USE_RP2040
|
|
|
|
namespace esphome {
|
|
namespace rp2040 {
|
|
|
|
void setup_preferences();
|
|
void preferences_prevent_write(bool prevent);
|
|
|
|
} // namespace rp2040
|
|
} // namespace esphome
|
|
|
|
#endif // USE_RP2040
|