• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ihormelnyk/opentherm_library: Arduino/ESP8266 OpenTherm Library for HVAC system ...

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

ihormelnyk/opentherm_library

开源软件地址(OpenSource Url):

https://github.com/ihormelnyk/opentherm_library

开源编程语言(OpenSource Language):

C++ 100.0%

开源软件介绍(OpenSource Introduction):

SWUbanner

OpenTherm Arduino/ESP8266 Library

This library provides implementation of OpenTherm protocol.

OpenTherm Library is based on OpenTherm protocol specification v2.2 and works with all OpenTherm compatible boilers. Library can be easily installed into Arduino IDE and compiled for Arduino, ESP8266 and other similar controllers.

OpenTherm protocol requires simple low voltage twowire connection to boiler, but voltage levels (7..15V) still much higher than Arduino/ESP8266 levels, which requires OpenTherm Adapter.

This version of library uses interrupts to achieve better stability and synchronization with boiler.

Using OpenTherm Library you will be able:

  • control your boiler remotely (get status, switch on/off heating/water heating, set water temperature and much more)
  • make custom thermostat

Configuration and Usage:

#include <OpenTherm.h>

You have to choose 2 controller GPIO pins which will be used for communication and connected to OpenTherm Adapter. Controller(Arduino/ESP8266) input pin should support interrupts. Controller output pin should be connected to OpenTherm Adapter input pin and vise versa.

const int inPin = 2;
const int outPin = 3;

Define OpenTherm class instance using constructor which accepts as arguments pin numbers:

OpenTherm ot(inPin, outPin);

Define interrupts handler function for specified above instance:

void handleInterrupt() {
	ot.handleInterrupt();
}

Use begin function to initialize OpenTherm instance, specify interrupts handler function as argument

void setup()
{
    ot.begin(handleInterrupt);
}

According to OpenTherm Protocol specification master (controller) must communicate at least every 1 sec. So lets make some requests in loop function:

void loop()
{	
    //Set/Get Boiler Status
    ot.setBoilerStatus(enableCentralHeating, enableHotWater, enableCooling);
    //Set Boiler Temperature to 64 degrees C
    ot.setBoilerTemperature(64);
    //Get Boiler Temperature
    float temperature = ot.getBoilerTemperature();
    delay(1000);
}

In details OpenTherm Library described here.

OpenTherm Adapter Schematic

opentherm adapter schmetic

Arduino UNO Connection

opentherm adapter arduino

License

Copyright (c) 2018 Ihor Melnyk. Licensed under the MIT license.




鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap