mx-bluesky 0.0.1__py3-none-any.whl → 0.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. mx_bluesky/__main__.py +1 -2
  2. mx_bluesky/_version.py +14 -2
  3. mx_bluesky/example.py +4 -4
  4. mx_bluesky/i04/__init__.py +3 -0
  5. mx_bluesky/i04/callbacks/murko_callback.py +45 -0
  6. mx_bluesky/i04/thawing_plan.py +84 -0
  7. mx_bluesky/i24/serial/__init__.py +49 -0
  8. mx_bluesky/i24/serial/blueapi_config.yaml +12 -0
  9. mx_bluesky/{I24 → i24}/serial/dcid.py +53 -41
  10. mx_bluesky/{I24 → i24}/serial/extruder/EX-gui-edm/DetStage.edl +1 -2
  11. mx_bluesky/{I24 → i24}/serial/extruder/EX-gui-edm/DiamondExtruder-I24-py3v1.edl +28 -32
  12. mx_bluesky/{I24 → i24}/serial/extruder/EX-gui-edm/microdrop_alignment.edl +0 -1
  13. mx_bluesky/i24/serial/extruder/i24ssx_Extruder_Collect_py3v2.py +513 -0
  14. mx_bluesky/{I24 → i24}/serial/fixed_target/FT-gui-edm/CustomChip_py3v1.edl +1 -2
  15. mx_bluesky/{I24 → i24}/serial/fixed_target/FT-gui-edm/DetStage.edl +1 -2
  16. mx_bluesky/{I24 → i24}/serial/fixed_target/FT-gui-edm/DiamondChipI24-py3v1.edl +46 -41
  17. mx_bluesky/{I24 → i24}/serial/fixed_target/FT-gui-edm/ME14E-GeneralPurpose.edl +0 -1
  18. mx_bluesky/{I24 → i24}/serial/fixed_target/FT-gui-edm/MappingLite-oxford_py3v1.edl +10 -11
  19. mx_bluesky/{I24 → i24}/serial/fixed_target/FT-gui-edm/PMAC_Command.edl +0 -1
  20. mx_bluesky/{I24 → i24}/serial/fixed_target/FT-gui-edm/Shutter_Control.edl +0 -1
  21. mx_bluesky/{I24 → i24}/serial/fixed_target/FT-gui-edm/microdrop_alignment.edl +0 -1
  22. mx_bluesky/{I24 → i24}/serial/fixed_target/FT-gui-edm/nudgechip.edl +0 -1
  23. mx_bluesky/{I24 → i24}/serial/fixed_target/FT-gui-edm/pumpprobe-py3v1.edl +300 -119
  24. mx_bluesky/i24/serial/fixed_target/FT-gui-edm/short1-laser.png +0 -0
  25. mx_bluesky/i24/serial/fixed_target/FT-gui-edm/short2-laser.png +0 -0
  26. mx_bluesky/{I24 → i24}/serial/fixed_target/ft_utils.py +24 -1
  27. mx_bluesky/i24/serial/fixed_target/i24ssx_Chip_Collect_py3v1.py +798 -0
  28. mx_bluesky/{I24 → i24}/serial/fixed_target/i24ssx_Chip_Manager_py3v1.py +374 -408
  29. mx_bluesky/{I24 → i24}/serial/fixed_target/i24ssx_Chip_Mapping_py3v1.py +34 -40
  30. mx_bluesky/i24/serial/fixed_target/i24ssx_Chip_StartUp_py3v1.py +325 -0
  31. mx_bluesky/{I24 → i24}/serial/fixed_target/i24ssx_moveonclick.py +40 -45
  32. mx_bluesky/i24/serial/log.py +156 -0
  33. mx_bluesky/i24/serial/parameters/__init__.py +15 -0
  34. mx_bluesky/i24/serial/parameters/constants.py +47 -0
  35. mx_bluesky/i24/serial/parameters/experiment_parameters.py +124 -0
  36. mx_bluesky/i24/serial/parameters/fixed_target/cs/cs_maker.json +9 -0
  37. mx_bluesky/{I24 → i24}/serial/parameters/fixed_target/cs/motor_direction.txt +1 -1
  38. mx_bluesky/{I24 → i24}/serial/parameters/fixed_target/pvar_files/minichip-oxford.pvar +1 -1
  39. mx_bluesky/i24/serial/parameters/utils.py +40 -0
  40. mx_bluesky/i24/serial/run_extruder.sh +19 -0
  41. mx_bluesky/i24/serial/run_fixed_target.sh +22 -0
  42. mx_bluesky/i24/serial/run_serial.py +36 -0
  43. mx_bluesky/{I24 → i24}/serial/set_visit_directory.sh +6 -1
  44. mx_bluesky/{I24 → i24}/serial/setup_beamline/pv.py +1 -62
  45. mx_bluesky/{I24 → i24}/serial/setup_beamline/pv_abstract.py +6 -7
  46. mx_bluesky/{I24 → i24}/serial/setup_beamline/setup_beamline.py +90 -269
  47. mx_bluesky/{I24 → i24}/serial/setup_beamline/setup_detector.py +47 -40
  48. mx_bluesky/i24/serial/setup_beamline/setup_zebra_plans.py +459 -0
  49. mx_bluesky/i24/serial/start_blueapi.sh +28 -0
  50. mx_bluesky/i24/serial/write_nexus.py +102 -0
  51. mx_bluesky/parameters/__init__.py +31 -0
  52. mx_bluesky/parameters/components.py +200 -0
  53. {mx_bluesky-0.0.1.dist-info → mx_bluesky-0.3.1.dist-info}/METADATA +37 -26
  54. mx_bluesky-0.3.1.dist-info/RECORD +67 -0
  55. {mx_bluesky-0.0.1.dist-info → mx_bluesky-0.3.1.dist-info}/WHEEL +1 -1
  56. mx_bluesky-0.3.1.dist-info/entry_points.txt +4 -0
  57. mx_bluesky/I24/serial/extruder/i24ssx_Extruder_Collect_py3v2.py +0 -476
  58. mx_bluesky/I24/serial/fixed_target/FT-gui-edm/ME14E-motors.edl +0 -1874
  59. mx_bluesky/I24/serial/fixed_target/__init__.py +0 -0
  60. mx_bluesky/I24/serial/fixed_target/i24ssx_Chip_Collect_py3v1.py +0 -695
  61. mx_bluesky/I24/serial/fixed_target/i24ssx_Chip_StartUp_py3v1.py +0 -463
  62. mx_bluesky/I24/serial/log.py +0 -101
  63. mx_bluesky/I24/serial/parameters/__init__.py +0 -5
  64. mx_bluesky/I24/serial/parameters/constants.py +0 -39
  65. mx_bluesky/I24/serial/parameters/fixed_target/cs/cs_maker.json +0 -9
  66. mx_bluesky/I24/serial/parameters/fixed_target/cs/fiducial_1.txt +0 -4
  67. mx_bluesky/I24/serial/parameters/fixed_target/cs/fiducial_2.txt +0 -4
  68. mx_bluesky/I24/serial/parameters/fixed_target/litemaps/currentchip.map +0 -81
  69. mx_bluesky/I24/serial/parameters/fixed_target/parameters.txt +0 -13
  70. mx_bluesky/I24/serial/run_serial.py +0 -52
  71. mx_bluesky/I24/serial/write_nexus.py +0 -113
  72. mx_bluesky-0.0.1.dist-info/RECORD +0 -58
  73. mx_bluesky-0.0.1.dist-info/entry_points.txt +0 -4
  74. /mx_bluesky/{I24 → i24}/__init__.py +0 -0
  75. /mx_bluesky/{I24/serial → i24/serial/extruder}/__init__.py +0 -0
  76. /mx_bluesky/{I24/serial/extruder → i24/serial/fixed_target}/__init__.py +0 -0
  77. /mx_bluesky/{I24 → i24}/serial/parameters/fixed_target/pvar_files/oxford.pvar +0 -0
  78. /mx_bluesky/{I24 → i24}/serial/run_ssx.sh +0 -0
  79. /mx_bluesky/{I24 → i24}/serial/setup_beamline/__init__.py +0 -0
  80. /mx_bluesky/{I24 → i24}/serial/setup_beamline/ca.py +0 -0
  81. {mx_bluesky-0.0.1.dist-info → mx_bluesky-0.3.1.dist-info}/LICENSE +0 -0
  82. {mx_bluesky-0.0.1.dist-info → mx_bluesky-0.3.1.dist-info}/top_level.txt +0 -0
@@ -3,8 +3,8 @@ beginScreenProperties
3
3
  major 4
4
4
  minor 0
5
5
  release 1
6
- x 2685
7
- y 187
6
+ x 2870
7
+ y 245
8
8
  w 1030
9
9
  h 950
10
10
  font "arial-medium-r-18.0"
@@ -280,7 +280,7 @@ botShadowColor index 14
280
280
  font "arial-medium-r-18.0"
281
281
  numCmds 1
282
282
  command {
283
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py moveto load_position"
283
+ 0 "blueapi -c CONFIG_LOCATION controller run moveto_preset '\{\"place\":\"load_position\"\}'"
284
284
  }
285
285
  endObjectProperties
286
286
 
@@ -301,7 +301,7 @@ botShadowColor index 14
301
301
  font "arial-medium-r-18.0"
302
302
  numCmds 1
303
303
  command {
304
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py moveto collect_position"
304
+ 0 "blueapi -c CONFIG_LOCATION controller run moveto_preset '\{\"place\":\"collect_position\"\}'"
305
305
  }
306
306
  endObjectProperties
307
307
 
@@ -323,7 +323,7 @@ font "helvetica-bold-r-24.0"
323
323
  buttonLabel "Start"
324
324
  numCmds 1
325
325
  command {
326
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Collect_py3v1.py"
326
+ 0 "blueapi -c CONFIG_LOCATION controller run run_fixed_target_plan"
327
327
  }
328
328
  endObjectProperties
329
329
 
@@ -615,7 +615,7 @@ botShadowColor index 14
615
615
  font "arial-medium-r-18.0"
616
616
  numCmds 1
617
617
  command {
618
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py cs_maker"
618
+ 0 "blueapi -c CONFIG_LOCATION controller run cs_maker"
619
619
  }
620
620
  endObjectProperties
621
621
 
@@ -1051,7 +1051,7 @@ botShadowColor index 14
1051
1051
  font "arial-medium-r-18.0"
1052
1052
  numCmds 1
1053
1053
  command {
1054
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py moveto zero"
1054
+ 0 "blueapi -c CONFIG_LOCATION controller run moveto_preset '\{\"place\":\"zero\"\}'"
1055
1055
  }
1056
1056
  endObjectProperties
1057
1057
 
@@ -1199,7 +1199,7 @@ botShadowColor index 14
1199
1199
  font "arial-medium-r-18.0"
1200
1200
  numCmds 1
1201
1201
  command {
1202
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py initialise"
1202
+ 0 "blueapi -c CONFIG_LOCATION controller run initialise_stages"
1203
1203
  }
1204
1204
  endObjectProperties
1205
1205
 
@@ -1240,7 +1240,7 @@ topShadowColor index 1
1240
1240
  botShadowColor index 8
1241
1241
  controlPv "ME14E-MO-IOC-01:GP4"
1242
1242
  font "arial-medium-r-18.0"
1243
- numItems 8
1243
+ numItems 9
1244
1244
  symbolTag {
1245
1245
  0 "None"
1246
1246
  1 "Short1"
@@ -1250,6 +1250,7 @@ symbolTag {
1250
1250
  5 "Repeat3"
1251
1251
  6 "Repeat5"
1252
1252
  7 "Repeat10"
1253
+ 8 "Medium1"
1253
1254
  }
1254
1255
  symbol0 {
1255
1256
  0 "na"
@@ -1260,6 +1261,7 @@ symbol0 {
1260
1261
  5 "R3"
1261
1262
  6 "R5"
1262
1263
  7 "R10"
1264
+ 8 "M1"
1263
1265
  }
1264
1266
  value0 {
1265
1267
  0 "None"
@@ -1270,6 +1272,7 @@ value0 {
1270
1272
  5 "Repeat3"
1271
1273
  6 "Repeat5"
1272
1274
  7 "Repeat10"
1275
+ 8 "Medium1"
1273
1276
  }
1274
1277
  endObjectProperties
1275
1278
 
@@ -1347,28 +1350,6 @@ value {
1347
1350
  autoSize
1348
1351
  endObjectProperties
1349
1352
 
1350
- # (Shell Command)
1351
- object shellCmdClass
1352
- beginObjectProperties
1353
- major 4
1354
- minor 3
1355
- release 0
1356
- x 805
1357
- y 730
1358
- w 135
1359
- h 50
1360
- fgColor index 1
1361
- bgColor index 20
1362
- topShadowColor index 3
1363
- botShadowColor index 14
1364
- font "helvetica-bold-r-24.0"
1365
- buttonLabel "Abort"
1366
- numCmds 1
1367
- command {
1368
- 0 "caput ME14E-MO-IOC-01:GP9 1"
1369
- }
1370
- endObjectProperties
1371
-
1372
1353
  # (Static Text)
1373
1354
  object activeXTextClass
1374
1355
  beginObjectProperties
@@ -1467,7 +1448,7 @@ botShadowColor index 14
1467
1448
  font "arial-medium-r-18.0"
1468
1449
  numCmds 1
1469
1450
  command {
1470
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py write_parameter_file"
1451
+ 0 "blueapi -c CONFIG_LOCATION controller run write_parameter_file"
1471
1452
  }
1472
1453
  endObjectProperties
1473
1454
 
@@ -1645,7 +1626,7 @@ botShadowColor index 14
1645
1626
  font "arial-medium-r-18.0"
1646
1627
  numCmds 1
1647
1628
  command {
1648
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py block_check "
1629
+ 0 "blueapi -c CONFIG_LOCATION controller run block_check"
1649
1630
  }
1650
1631
  endObjectProperties
1651
1632
 
@@ -3019,7 +3000,7 @@ font "helvetica-medium-r-18.0"
3019
3000
  buttonLabel "Set Fiducial 2"
3020
3001
  numCmds 1
3021
3002
  command {
3022
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py fiducial 2"
3003
+ 0 "blueapi -c CONFIG_LOCATION controller run fiducial '\{\"point\":\"2\"\}'"
3023
3004
  }
3024
3005
  endObjectProperties
3025
3006
 
@@ -3041,7 +3022,7 @@ font "helvetica-medium-r-18.0"
3041
3022
  buttonLabel "Goto Fiducial 2"
3042
3023
  numCmds 1
3043
3024
  command {
3044
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py moveto f2"
3025
+ 0 "blueapi -c CONFIG_LOCATION controller run moveto '\{\"place\":\"f2\"\}'"
3045
3026
  }
3046
3027
  endObjectProperties
3047
3028
 
@@ -3085,7 +3066,7 @@ font "helvetica-medium-r-18.0"
3085
3066
  buttonLabel "Set Fiducial 1"
3086
3067
  numCmds 1
3087
3068
  command {
3088
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py fiducial 1"
3069
+ 0 "blueapi -c CONFIG_LOCATION controller run fiducial '\{\"point\":\"1\"\}'"
3089
3070
  }
3090
3071
  endObjectProperties
3091
3072
 
@@ -3107,7 +3088,7 @@ font "helvetica-medium-r-18.0"
3107
3088
  buttonLabel "Goto Fiducial 1"
3108
3089
  numCmds 1
3109
3090
  command {
3110
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py moveto f1"
3091
+ 0 "blueapi -c CONFIG_LOCATION controller run moveto '\{\"place\":\"f1\"\}'"
3111
3092
  }
3112
3093
  endObjectProperties
3113
3094
 
@@ -3293,24 +3274,27 @@ topShadowColor index 1
3293
3274
  botShadowColor index 8
3294
3275
  controlPv "ME14E-MO-IOC-01:GP1"
3295
3276
  font "arial-medium-r-18.0"
3296
- numItems 4
3277
+ numItems 5
3297
3278
  symbolTag {
3298
3279
  0 "Oxford"
3299
3280
  1 "Oxford Inner"
3300
3281
  2 "Custom"
3301
3282
  3 "Minichip"
3283
+ 4 "MISP"
3302
3284
  }
3303
3285
  symbol0 {
3304
3286
  0 "OX"
3305
3287
  1 "B1"
3306
3288
  2 "Cu"
3307
3289
  3 "Mini"
3290
+ 4 "MI"
3308
3291
  }
3309
3292
  value0 {
3310
3293
  0 "oxford"
3311
3294
  1 "Oxford Inner"
3312
3295
  2 "Custom"
3313
3296
  3 "Minichip"
3297
+ 4 "MISP"
3314
3298
  }
3315
3299
  endObjectProperties
3316
3300
 
@@ -3855,7 +3839,7 @@ botShadowColor index 14
3855
3839
  font "arial-medium-r-18.0"
3856
3840
  numCmds 1
3857
3841
  command {
3858
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py moveto zero"
3842
+ 0 "blueapi -c CONFIG_LOCATION controller run moveto '\{\"place\":\"zero\"\}'"
3859
3843
  }
3860
3844
  endObjectProperties
3861
3845
 
@@ -3897,7 +3881,7 @@ botShadowColor index 14
3897
3881
  font "arial-medium-r-18.0"
3898
3882
  numCmds 1
3899
3883
  command {
3900
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py moveto microdrop_position"
3884
+ 0 "blueapi -c CONFIG_LOCATION controller run moveto_preset '\{\"place\":\"microdrop_position\"\}'"
3901
3885
  }
3902
3886
  endObjectProperties
3903
3887
 
@@ -3983,7 +3967,7 @@ buttonLabel "Stages"
3983
3967
  numPvs 4
3984
3968
  numDsps 1
3985
3969
  displayFileName {
3986
- 0 "EDM_LOCATION/ME14E-motors.edl"
3970
+ 0 "/dls_sw/work/R3.14.12.3/ioc/ME14E/BL/data/ME14E-motors.edl"
3987
3971
  }
3988
3972
  endObjectProperties
3989
3973
 
@@ -4087,3 +4071,24 @@ displayFileName {
4087
4071
  }
4088
4072
  endObjectProperties
4089
4073
 
4074
+ # (Shell Command)
4075
+ object shellCmdClass
4076
+ beginObjectProperties
4077
+ major 4
4078
+ minor 3
4079
+ release 0
4080
+ x 800
4081
+ y 730
4082
+ w 135
4083
+ h 50
4084
+ fgColor index 0
4085
+ bgColor index 20
4086
+ topShadowColor index 0
4087
+ botShadowColor index 14
4088
+ font "helvetica-bold-r-24.0"
4089
+ buttonLabel "Abort"
4090
+ numCmds 1
4091
+ command {
4092
+ 0 "blueapi -c CONFIG_LOCATION controller abort"
4093
+ }
4094
+ endObjectProperties
@@ -4957,4 +4957,3 @@ value {
4957
4957
  }
4958
4958
  autoSize
4959
4959
  endObjectProperties
4960
-
@@ -40,7 +40,7 @@ font "helvetica-medium-r-14.0"
40
40
  buttonLabel "Load Map File"
41
41
  numCmds 1
42
42
  command {
43
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py load_lite_map"
43
+ 0 "blueapi -c CONFIG_LOCATION controller run load_lite_map"
44
44
  }
45
45
  endObjectProperties
46
46
 
@@ -197,7 +197,7 @@ font "arial-medium-r-18.0"
197
197
  buttonLabel "Save Screen Map"
198
198
  numCmds 1
199
199
  command {
200
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py save_screen_map"
200
+ 0 "blueapi -c CONFIG_LOCATION controller run save_screen_map"
201
201
  }
202
202
  endObjectProperties
203
203
 
@@ -219,7 +219,7 @@ font "arial-medium-r-18.0"
219
219
  buttonLabel "Upload Parameters"
220
220
  numCmds 1
221
221
  command {
222
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py upload_parameters oxford"
222
+ 0 "blueapi -c CONFIG_LOCATION controller run upload_parameters '\{\"chipid\":\"oxford\"\}'"
223
223
  }
224
224
  endObjectProperties
225
225
 
@@ -2168,7 +2168,7 @@ botShadowColor index 11
2168
2168
  font "arial-medium-r-18.0"
2169
2169
  numCmds 1
2170
2170
  command {
2171
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py load_stock_map clear"
2171
+ 0 "blueapi -c CONFIG_LOCATION controller run load_stock_map '\{\"map_choice\":\"clear\"\}'"
2172
2172
  }
2173
2173
  endObjectProperties
2174
2174
 
@@ -2189,7 +2189,7 @@ botShadowColor index 11
2189
2189
  font "arial-medium-r-18.0"
2190
2190
  numCmds 1
2191
2191
  command {
2192
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py load_stock_map x88"
2192
+ 0 "blueapi -c CONFIG_LOCATION controller run load_stock_map '\{\"map_choice\":\"x88\"\}'"
2193
2193
  }
2194
2194
  endObjectProperties
2195
2195
 
@@ -2276,7 +2276,7 @@ botShadowColor index 11
2276
2276
  font "arial-medium-r-18.0"
2277
2277
  numCmds 1
2278
2278
  command {
2279
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py load_stock_map x66"
2279
+ 0 "blueapi -c CONFIG_LOCATION controller run load_stock_map '\{\"map_choice\":\"x66\"\}'"
2280
2280
  }
2281
2281
  endObjectProperties
2282
2282
 
@@ -2334,7 +2334,7 @@ botShadowColor index 11
2334
2334
  font "arial-medium-r-18.0"
2335
2335
  numCmds 1
2336
2336
  command {
2337
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py load_stock_map x44"
2337
+ 0 "blueapi -c CONFIG_LOCATION controller run load_stock_map '\{\"map_choice\":\"x44\"\}'"
2338
2338
  }
2339
2339
  endObjectProperties
2340
2340
 
@@ -2410,7 +2410,7 @@ font "helvetica-medium-r-18.0"
2410
2410
  buttonLabel "Define Chip In PMAC"
2411
2411
  numCmds 1
2412
2412
  command {
2413
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py define_current_chip oxford"
2413
+ 0 "blueapi -c CONFIG_LOCATION controller run define_current_chip '\{\"chipid\":\"oxford\"\}'"
2414
2414
  }
2415
2415
  endObjectProperties
2416
2416
 
@@ -2566,7 +2566,7 @@ botShadowColor index 11
2566
2566
  font "arial-medium-r-18.0"
2567
2567
  numCmds 1
2568
2568
  command {
2569
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py load_stock_map half1"
2569
+ 0 "blueapi -c CONFIG_LOCATION controller run load_stock_map '\{\"map_choice\":\"half1\"\}'"
2570
2570
  }
2571
2571
  endObjectProperties
2572
2572
 
@@ -2645,7 +2645,7 @@ botShadowColor index 11
2645
2645
  font "arial-medium-r-18.0"
2646
2646
  numCmds 1
2647
2647
  command {
2648
- 0 "python SCRIPTS_LOCATION/fixed_target/i24ssx_Chip_Manager_py3v1.py load_stock_map half2"
2648
+ 0 "blueapi -c CONFIG_LOCATION controller run load_stock_map '\{\"map_choice\":\"half2\"\}'"
2649
2649
  }
2650
2650
  endObjectProperties
2651
2651
 
@@ -2664,4 +2664,3 @@ fill
2664
2664
  fillColor index 20
2665
2665
  lineWidth 0
2666
2666
  endObjectProperties
2667
-
@@ -100,4 +100,3 @@ value {
100
100
  }
101
101
  autoSize
102
102
  endObjectProperties
103
-
@@ -105,4 +105,3 @@ value {
105
105
  }
106
106
  autoSize
107
107
  endObjectProperties
108
-
@@ -1080,4 +1080,3 @@ value {
1080
1080
  }
1081
1081
  autoSize
1082
1082
  endObjectProperties
1083
-
@@ -1168,4 +1168,3 @@ command {
1168
1168
  0 "caget ME14E-MO-CHIP-01:X"
1169
1169
  }
1170
1170
  endObjectProperties
1171
-