當前位置: 首頁>>代碼示例>>Python>>正文


Python Control.get_cooling_pump方法代碼示例

本文整理匯總了Python中control.Control.get_cooling_pump方法的典型用法代碼示例。如果您正苦於以下問題:Python Control.get_cooling_pump方法的具體用法?Python Control.get_cooling_pump怎麽用?Python Control.get_cooling_pump使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在control.Control的用法示例。


在下文中一共展示了Control.get_cooling_pump方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: save_db_control

# 需要導入模塊: from control import Control [as 別名]
# 或者: from control.Control import get_cooling_pump [as 別名]
def save_db_control(Control):
    with app.app_context():
        db = get_db()
        db.execute('INSERT INTO control_state(update_time,roof_vent_south,roof_vent_north,side_vent,shade_screen_north,shade_screen_south,thermal_screen,\
        cooling_pump,cooling_fan,fan,fogging,heating,co2,lighting_1,lighting_2,irrigation) VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)',
                   [Control.get_update_time(), Control.get_roof_vent_south(), Control.get_roof_vent_north(),
                    Control.get_side_vent(), Control.get_shade_screen_north(), Control.get_shade_screen_south(), \
                    Control.get_thermal_screen(), Control.get_cooling_pump(), Control.get_cooling_fan(),
                    Control.get_fan(), Control.get_fogging(),
                    Control.get_heating(), Control.get_co2(), Control.get_lighting_1(), Control.get_lighting_2(),
                    Control.get_irrigation()])
        db.commit()
        db.cursor().close()
        db.close()
    print 'control save success'
開發者ID:tj621,項目名稱:py_back,代碼行數:17,代碼來源:database.py


注:本文中的control.Control.get_cooling_pump方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。