回答編集履歴
3
noudayの場所変更
test
CHANGED
@@ -186,12 +186,12 @@
|
|
186
186
|
|
187
187
|
inputVal1=readadc(1,SPICLK,SPIMOSI,SPIMISO,SPICS)#アラーム(赤)
|
188
188
|
|
189
|
+
now=datetime.datetime.now()
|
190
|
+
|
191
|
+
nowday='{0:%Y%m%d}'.format(now)#日付でcsv保存するため
|
192
|
+
|
189
193
|
if inputVal0 > 2000 or inputVal1 > 2000:#on/offを判断する光量を変更(緑)
|
190
194
|
|
191
|
-
now=datetime.datetime.now()
|
192
|
-
|
193
|
-
nowday='{0:%Y%m%d}'.format(now)#日付でcsv保存するため
|
194
|
-
|
195
195
|
#print(inputVal0)
|
196
196
|
|
197
197
|
time1=time1+1
|
2
noudayの場所変更
test
CHANGED
@@ -174,9 +174,7 @@
|
|
174
174
|
|
175
175
|
ax = fig.add_subplot()
|
176
176
|
|
177
|
-
|
177
|
+
|
178
|
-
|
179
|
-
nowday='{0:%Y%m%d}'.format(now)#日付でcsv保存するため
|
180
178
|
|
181
179
|
|
182
180
|
|
@@ -190,6 +188,10 @@
|
|
190
188
|
|
191
189
|
if inputVal0 > 2000 or inputVal1 > 2000:#on/offを判断する光量を変更(緑)
|
192
190
|
|
191
|
+
now=datetime.datetime.now()
|
192
|
+
|
193
|
+
nowday='{0:%Y%m%d}'.format(now)#日付でcsv保存するため
|
194
|
+
|
193
195
|
#print(inputVal0)
|
194
196
|
|
195
197
|
time1=time1+1
|
1
plt.clf()を追加
test
CHANGED
@@ -16,6 +16,8 @@
|
|
16
16
|
|
17
17
|
from time import sleep
|
18
18
|
|
19
|
+
import matplotlib as mpl
|
20
|
+
|
19
21
|
|
20
22
|
|
21
23
|
start=time.time()
|
@@ -154,15 +156,21 @@
|
|
154
156
|
|
155
157
|
plt.gca().set_xlim(left=datetime.datetime(d_today.year, d_today.month, d_today.day, 7, 0),right=dt_end)
|
156
158
|
|
157
|
-
plt.
|
159
|
+
plt.gca().set_yticks([])
|
158
160
|
|
159
161
|
plt.draw()
|
160
162
|
|
163
|
+
plt.subplots_adjust(left=0.03, right=0.97, bottom=0.2, top=1)
|
164
|
+
|
161
165
|
plt.pause(1)
|
162
166
|
|
163
|
-
|
167
|
+
plt.clf()
|
168
|
+
|
169
|
+
|
170
|
+
|
164
|
-
|
171
|
+
mpl.rcParams['toolbar'] = 'None'
|
172
|
+
|
165
|
-
fig = plt.figure(figsize=(
|
173
|
+
fig = plt.figure(figsize=(8.7, 3.5))
|
166
174
|
|
167
175
|
ax = fig.add_subplot()
|
168
176
|
|
@@ -192,7 +200,7 @@
|
|
192
200
|
|
193
201
|
print(time1)
|
194
202
|
|
195
|
-
if time1=
|
203
|
+
if time1>=60:
|
196
204
|
|
197
205
|
plot_operation(fig, ax)
|
198
206
|
|
@@ -220,6 +228,8 @@
|
|
220
228
|
|
221
229
|
break
|
222
230
|
|
231
|
+
|
232
|
+
|
223
233
|
```
|
224
234
|
|
225
235
|
|