-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
26 lines (22 loc) · 774 Bytes
/
config.toml
File metadata and controls
26 lines (22 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# LSPS Runtime Configuration
# Edit this file to match your hardware setup and file paths.
[hardware]
# Serial port for the Arduino (e.g. "COM8" on Windows, "/dev/ttyUSB0" on Linux)
arduino_port = "COM8"
# OpenCV camera device index (0 = first camera)
camera_index = 0
[paths]
# Directory where experiment data (.npz files) will be saved
data_dir = "~/Documents/LSPS_Data"
# Filename for the persisted experiment parameters
parameters_file = "Initial_Parameters.npz"
[experiment]
default_rows = 15
default_cols = 20
default_grid_spacing = 50 # microns between stimulation sites
[logging]
# Log level: DEBUG, INFO, WARNING, ERROR
level = "INFO"
# Whether to write log output to a rotating file in data_dir
log_to_file = true
log_file = "~/Documents/LSPS_Data/lsps.log"