Update service IDs

This commit is contained in:
Ken Van Hoeylandt 2026-08-16 16:56:01 +02:00
parent a34dcbd13e
commit 9dd0503498
12 changed files with 13 additions and 13 deletions

View File

@ -17,7 +17,7 @@ constexpr auto* TAG = "gps_settings";
// Storage key for the persisted configuration file (services would use their own service ID for // Storage key for the persisted configuration file (services would use their own service ID for
// this; gps_settings has no service backing it, so it defines its own). // this; gps_settings has no service backing it, so it defines its own).
constexpr auto* GPS_SETTINGS_STORAGE_ID = "gps"; constexpr auto* GPS_SETTINGS_STORAGE_ID = "tactility.gps";
// region Configuration persistence // region Configuration persistence

View File

@ -329,7 +329,7 @@ std::shared_ptr<AudioService> findAudioService() {
} }
extern const ServiceManifest manifest = { extern const ServiceManifest manifest = {
.id = "Audio", .id = "tactility.audio",
.createService = create<AudioService> .createService = create<AudioService>
}; };

View File

@ -252,7 +252,7 @@ std::shared_ptr<DevelopmentService> findService() {
} }
extern const ServiceManifest manifest = { extern const ServiceManifest manifest = {
.id = "Development", .id = "tactility.development",
.createService = create<DevelopmentService> .createService = create<DevelopmentService>
}; };

View File

@ -280,12 +280,12 @@ void DisplayIdleService::reloadSettings() {
std::shared_ptr<DisplayIdleService> findService() { std::shared_ptr<DisplayIdleService> findService() {
return std::static_pointer_cast<DisplayIdleService>( return std::static_pointer_cast<DisplayIdleService>(
findServiceById("DisplayIdle") findServiceById("tactility.displayidle")
); );
} }
extern const ServiceManifest manifest = { extern const ServiceManifest manifest = {
.id = "DisplayIdle", .id = "tactility.displayidle",
.createService = create<DisplayIdleService> .createService = create<DisplayIdleService>
}; };

View File

@ -193,7 +193,7 @@ std::shared_ptr<EspNowService> findService() {
} }
extern const ServiceManifest manifest = { extern const ServiceManifest manifest = {
.id = "EspNow", .id = "tactility.espnow",
.createService = create<EspNowService> .createService = create<EspNowService>
}; };

View File

@ -113,7 +113,7 @@ public:
}; };
extern const ServiceManifest manifest = { extern const ServiceManifest manifest = {
.id = "KeyboardIdle", .id = "tactility.keyboardidle",
.createService = create<KeyboardIdleService> .createService = create<KeyboardIdleService>
}; };

View File

@ -85,7 +85,7 @@ void MemoryCheckerService::onTimerUpdate() {
} }
extern const ServiceManifest manifest = { extern const ServiceManifest manifest = {
.id = "MemoryChecker", .id = "tactility.memorychecker",
.createService = create<MemoryCheckerService> .createService = create<MemoryCheckerService>
}; };

View File

@ -140,7 +140,7 @@ void RtcTimeService::onStop(ServiceContext& serviceContext) {
} }
extern const ServiceManifest manifest = { extern const ServiceManifest manifest = {
.id = "RtcTime", .id = "tactility.rtctime",
.createService = create<RtcTimeService> .createService = create<RtcTimeService>
}; };

View File

@ -97,7 +97,7 @@ bool ScreenshotService::isTaskStarted() {
} }
extern const ServiceManifest manifest = { extern const ServiceManifest manifest = {
.id = "Screenshot", .id = "tactility.screenshot",
.createService = create<ScreenshotService> .createService = create<ScreenshotService>
}; };

View File

@ -359,7 +359,7 @@ public:
}; };
extern const ServiceManifest manifest = { extern const ServiceManifest manifest = {
.id = "Statusbar", .id = "tactility.statusbar",
.createService = create<StatusbarService> .createService = create<StatusbarService>
}; };

View File

@ -1797,7 +1797,7 @@ esp_err_t WebServerService::handleAssets(httpd_req_t* request) {
} }
extern const ServiceManifest manifest = { extern const ServiceManifest manifest = {
.id = "WebServer", .id = "tactility.webserver",
.createService = create<WebServerService> .createService = create<WebServerService>
}; };

View File

@ -551,7 +551,7 @@ public:
} // namespace } // namespace
extern const ServiceManifest manifest = { extern const ServiceManifest manifest = {
.id = "wifi", .id = "tactility.wifi",
.createService = create<WifiService> .createService = create<WifiService>
}; };