Commit a375eba0 authored by Arnaud WATLET's avatar Arnaud WATLET
Browse files

Adds Vmn and I readings in ohmpi.py

Showing with 1 addition and 1 deletion
+1 -1
......@@ -468,7 +468,7 @@ class OhmPi(object):
Vmn = np.mean(self._hw.readings[x, 2] * (self._hw.readings[x, 4] - self._hw.sp))
Vmn_std = 100. * np.std(self._hw.readings[x, 2] * (self._hw.readings[x, 4] - self._hw.sp))
I = np.mean(self._hw.readings[x, 3])
I = 100. * np.std(self._hw.readings[x, 3])
I_std = 100. * np.std(self._hw.readings[x, 3])
d = {
"time": datetime.now().isoformat(),
"A": quad[0],
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment