From 5c4ff203d7f76c3af9a3429637fd772ac16b23ab Mon Sep 17 00:00:00 2001 From: Richard Bowman Date: Thu, 28 Nov 2024 10:26:56 +0000 Subject: [PATCH] Fix full config file The full config file now uses the correct syntax for loading the picamera2 and sangaboard Things, and uses the default system-level settings folder. --- ofm_config_full.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ofm_config_full.json b/ofm_config_full.json index be38386a..0c4a2c69 100644 --- a/ofm_config_full.json +++ b/ofm_config_full.json @@ -1,7 +1,7 @@ { "things": { - "/camera/": "labthings_picamera2.thing.StreamingPiCamera2", - "/stage/": "labthings_sangaboard.SangaboardThing", + "/camera/": "labthings_picamera2.thing:StreamingPiCamera2", + "/stage/": "labthings_sangaboard:SangaboardThing", "/auto_recentre_stage/": "openflexure_microscope_server.things.auto_recentre_stage:RecentringThing", "/autofocus/": "openflexure_microscope_server.things.autofocus:AutofocusThing", "/camera_stage_mapping/": "openflexure_microscope_server.things.camera_stage_mapping:CameraStageMapper", @@ -15,5 +15,5 @@ }, "/background_detect/": "openflexure_microscope_server.things.smart_scan:BackgroundDetectThing" }, - "settings_folder": "./openflexure_settings/" -} \ No newline at end of file + "settings_folder": "/var/openflexure/settings/" +}