Commit eb71df0965b787c7afe23ce2cfad85da4e76e994

Authored by Alexis Koralewski
1 parent 4eb8e0fb
Exists in dev

Add monitoring_names to plot on website in Pyros Config

config/pyros/config_pyros.yml
... ... @@ -10,5 +10,11 @@ OCF: ~
10 10 ENV:
11 11 time_history: 2
12 12 time_before_plot: 10
  13 + monitoring_names_to_be_plotted:
  14 + - Wind_direction
  15 + - Wind_speed
  16 + - Rain_boolean
  17 + - Temperature_outside
  18 + - Humidity_outside
13 19  
14 20  
15 21 \ No newline at end of file
... ...
config/pyros/schema_pyros_config.yml
... ... @@ -29,3 +29,7 @@ mapping:
29 29 type: int
30 30 time_before_plot:
31 31 type: int
  32 + monitoring_names_to_be_plotted:
  33 + type: seq
  34 + sequence:
  35 + - type: str
32 36 \ No newline at end of file
... ...