最近比較忙,進度又慢下來了,目前的控制邏輯是完全經由使用者輸入的程式來決定的,這點與Neptune AquaController類似,有一點程式概念的人應該會很喜歡的方式。
1.溫度高於27度時A燈關閉,高於29度時B燈關閉:
if temp > 27.0 then ltA=off endif
if temp > 29.0 then ltB=off endif
2.停電時由UPS供電並走另一種控制設定:
if power=0 then
.....
....
else
....
....
endif