DmitrMakeev commited on
Commit
0cac539
1 Parent(s): 2bc38dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -132,7 +132,12 @@ def ec_B_setValue():
132
  globs.eep_set = 5
133
  return "EC value set successfully"
134
 
135
-
 
 
 
 
 
136
 
137
 
138
 
 
132
  globs.eep_set = 5
133
  return "EC value set successfully"
134
 
135
+ @app.route('/ec_C_set')
136
+ def ec_C_setValue():
137
+ ec_C_setValue = request.args.get('value')
138
+ globs.ec_C_set = ec_C_setValue
139
+ globs.eep_set = 6
140
+ return "EC value set successfully"
141
 
142
 
143