integration VS connectedhomeip

Compare integration vs connectedhomeip and see what are their differences.

integration

HACS gives you a powerful UI to handle downloads of all your custom needs. (by hacs)

connectedhomeip

Matter (formerly Project CHIP) creates more connections between more objects, simplifying development for manufacturers and increasing compatibility for consumers, guided by the Connectivity Standards Alliance. (by project-chip)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
integration connectedhomeip
45 137
4,638 6,964
4.0% 1.8%
8.6 10.0
3 days ago 4 days ago
Python C++
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

integration

Posts with mentions or reviews of integration. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-12.
  • Thoughts, learnings and regrets after three years on Home Assistant
    4 projects | news.ycombinator.com | 12 Feb 2024
    I have HACS[0] installed in my Docker image, I use it for exactly one integration and the initial setup seemed a little dodgy but it's been pain-free for a couple of years now.

    [0]: https://hacs.xyz/

  • Is there a way to see actual print time after a print is done?
    3 projects | /r/BambuLab | 8 Dec 2023
  • MyQ now free? Possibly included with premium connectivity?
    2 projects | /r/teslamotors | 23 Jun 2023
    Yeah! So first, get HACS if you don’t already have it (https://hacs.xyz), then the custom Tesla integration (https://github.com/alandtse/tesla) - side note: you’ll need to be able to get a refresh token for your account (iOS app: https://apps.apple.com/us/app/auth-app-for-tesla/id1552058613)… once you have the integration setup, create an automation. It should trigger when your vehicle tracker enters home zone and you can set device > myQ to open. Lmk if you need more help or have questions
  • Noob question
    1 project | /r/smarthome | 17 Jun 2023
  • Natural Light setting is fickle - Lutron Aurora
    2 projects | /r/Hue | 16 May 2023
    Adaptive lighting is not a default for Home Assistant. It's an addon. You can install it through HACS (which is an addon itself) https://hacs.xyz/
  • How to access all of the things from a single point
    1 project | /r/homeautomation | 28 Feb 2023
    Once you have that, you can also install a lot of additional services that would require separate docker containers from the Addon Store (like PiHole) or HACS, which is where you'll get all the unofficially supported integrations. Frigate is an option in the latter, so I don't think you need a separate PC application, unless it's just to view.
  • Hello I have a problem with install home assistant (truecharts stable) on my server …. This is the problem.
    1 project | /r/truenas | 14 Feb 2023
    Error: Traceback (most recent call last): File "/usr/lib/python3/dist-packages/middlewared/job.py", line 411, in run await self.future File "/usr/lib/python3/dist-packages/middlewared/job.py", line 446, in __run_body rv = await self.method(([self] + args)) File "/usr/lib/python3/dist-packages/middlewared/schema.py", line 1140, in nf res = await f(args, *kwargs) File "/usr/lib/python3/dist-packages/middlewared/schema.py", line 1272, in nf return await func(args, *kwargs) File "/usr/lib/python3/dist-packages/middlewared/plugins/chart_releases_linux/chart_release.py", line 481, in do_create await self.middleware.call( File "/usr/lib/python3/dist-packages/middlewared/main.py", line 1345, in call return await self._call( File "/usr/lib/python3/dist-packages/middlewared/main.py", line 1305, in _call return await self.run_in_executor(prepared_call.executor, methodobj, *prepared_call.args) File "/usr/lib/python3/dist-packages/middlewared/main.py", line 1206, in run_in_executor return await loop.run_in_executor(pool, functools.partial(method, *args, *kwargs)) File "/usr/lib/python3.9/concurrent/futures/thread.py", line 52, in run result = self.fn(self.args, *self.kwargs) File "/usr/lib/python3/dist-packages/middlewared/plugins/chart_releases_linux/helm.py", line 44, in helm_action raise CallError(f'Failed to {tn_action} chart release: {stderr.decode()}') middlewared.service_exception.CallError: [EFAULT] Failed to install chart release: Error: INSTALLATION FAILED: template: home-assistant/templates/common.yaml:5:3: executing "home-assistant/templates/common.yaml" at : error calling include: template: home-assistant/charts/common/templates/loader/_apply.tpl:20:5: executing "tc.common.loader.apply" at : error calling include: template: home-assistant/charts/common/templates/spawner/_configmap.tpl:16:10: executing "tc.common.spawner.configmap" at : error calling include: template: home-assistant/charts/common/templates/class/_configmap.tpl:33:6: executing "tc.common.class.configmap" at : error calling tpl: error during tpl function execution for "configuration.yaml.default: |-\n # Configure a default setup of Home Assistant (frontend, api, etc)\n default_config:\n\n # Text to speech\n tts:\n - platform: google_translate\n\n group: !include groups.yaml\n automation: !include automations.yaml\n script: !include scripts.yaml\n scene: !include scenes.yaml\nhttp.default: |2-\n\n http:\n use_x_forwarded_for: true\n trusted_proxies:\n {{- if hasKey .Values \"ixChartContext\" }}\n - {{ .Values.ixChartContext.kubernetes_config.cluster_cidr }}\n {{- else }}\n {{- range .Values.homeassistant.trusted_proxies }}\n - {{ . }}\n {{- end }}\n {{- end }}\ninit.sh: |-\n #!/bin/sh\n if test -f \"/config/configuration.yaml\"; then\n echo \"configuration.yaml exists.\"\n if grep -q recorder: \"/config/configuration.yaml\"; then\n echo \"configuration.yaml already contains recorder\"\n else\n cat /config/init/recorder.default >> /config/configuration.yaml\n fi\n if grep -q http: \"/config/configuration.yaml\"; then\n echo \"configuration.yaml already contains http section\"\n else\n cat /config/init/http.default >> /config/configuration.yaml\n fi\n else\n echo \"configuration.yaml does NOT exist.\"\n cp /config/init/configuration.yaml.default /config/configuration.yaml\n cat /config/init/recorder.default >> /config/configuration.yaml\n cat /config/init/http.default >> /config/configuration.yaml\n fi\n\n echo \"Creating include files...\"\n for include_file in groups.yaml automations.yaml scripts.yaml scenes.yaml; do\n if test -f \"/config/$include_file\"; then\n echo \"$include_file exists.\"\n else\n echo \"$include_file does NOT exist.\"\n touch \"/config/$include_file\"\n fi\n done\n\n cd \"/config\" || echo \"Could not change path to /config\"\n echo \"Creating custom_components directory...\"\n mkdir \"/config/custom_components\" || echo \"custom_components directory already exists\"\n\n echo \"Changing to the custom_components directory...\"\n cd \"/config/custom_components\" || echo \"Could not change path to /config/custom_components\"\n\n echo \"Downloading HACS\"\n wget \"https://github.com/hacs/integration/releases/latest/download/hacs.zip\" || exit 0\n\n if [ -d \"/config/custom_components/hacs\" ]; then\n echo \"HACS directory already exist, cleaning up...\"\n rm -R \"/config/custom_components/hacs\"\n fi\n\n echo \"Creating HACS directory...\"\n mkdir \"/config/custom_components/hacs\"\n\n echo \"Unpacking HACS...\"\n unzip \"/config/custom_components/hacs.zip\" -d \"/config/custom_components/hacs\" >/dev/null 2>&1\n\n echo \"Removing HACS zip file...\"\n rm \"/config/custom_components/hacs.zip\"\n echo \"Installation complete.\"\nrecorder.default: |2-\n\n recorder:\n purge_keep_days: 30\n commit_interval: 3\n db_url: {{ ( printf \"%s?client_encoding=utf8\" ( .Values.postgresql.url.complete | trimAll \"\\"\" ) ) | quote }}": template: home-assistant/templates/common.yaml:19:18: executing "home-assistant/templates/common.yaml" at <.Values.ixChartContext.kubernetes_config.cluster_cidr>: nil pointer evaluating interface {}.cluster_cidr
  • Alexa routines accessible in home assistant?
    3 projects | /r/homeautomation | 6 Jan 2023
    Yup! There's a community integration you can install called Alexa Media Player. The easiest way to install it is by using HACS.
  • This is why Linus says not to buy Cloud-based services
    1 project | /r/LinusTechTips | 22 Nov 2022
    There's also an extended 'store' called HACS (Home Assistant Community Store) which basically has third-party, but still FOSS so you can audit the code, integrations which further expand. https://hacs.xyz/
  • What are your favorite Tesla accessories?
    6 projects | /r/teslamotors | 26 Jul 2022
    [HACS](https://hacs.xyz/

connectedhomeip

Posts with mentions or reviews of connectedhomeip. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-14.
  • ESP32-C3 Wireless Adventure: A Comprehensive Guide to IoT [pdf]
    9 projects | news.ycombinator.com | 14 Jun 2023
    They do have example Matter projects for the ESP32-C3/S3. I assume it's over WiFi and not thread.

    https://github.com/project-chip/connectedhomeip/tree/master/...

  • How do you move you into more technical/R&amp;D positions?
    1 project | /r/ExperiencedDevs | 4 Jun 2023
    IoT is a big space right now if you look at the companies who commit to https://github.com/project-chip/connectedhomeip. They come together at the CSA Member Meeting.
  • ModuleNotFoundError: No module named 'matter_idl'
    3 projects | /r/esp32 | 14 May 2023
    I followed this doc: https://github.com/project-chip/connectedhomeip/blob/master/docs/guides/esp32/setup_idf_chip.md
  • Matter Raspberry Pi GPIO Commander – Turn Your Pi into a Matter Lighting Device
    2 projects | news.ycombinator.com | 13 May 2023
    "Securing name resolution in the IoT: DNS over CoAP" https://news.ycombinator.com/item?id=32186286

    From https://github.com/project-chip/connectedhomeip#architecture... :

    > Matter aims to build a universal IPv6-based communication protocol for smart home devices. The protocol defines the application layer that will be deployed on devices and the different link layers to help maintain interoperability. The following diagram illustrates the normal operational mode of the stack:

    > [...] It is built with market-proven technologies using Internet Protocol (IP) and is compatible with Thread and Wi-Fi network transports.

    > Matter was developed by a Working Group within the Connectivity Standards Alliance (Alliance). This Working Group develops and promotes the adoption of the Matter standard, a royalty-free connectivity standard to increase compatibility among smart home products, with security as a fundamental design tenet. The vision that led major industry players to come together to build Matter is that smart connectivity should be simple, reliable, and interoperable.

    > [...] The code examples show simple interactions, and are supported on multiple transports -- Wi-Fi and Thread -- starting with resource-constrained (i.e., memory, processing) silicon platforms to help ensure Matter’s scalability.

    Is there already a good (security) comparison of e.g. http basic auth, x10, ZigBee, mqtt, matter?

  • Any open source repositories/projects written in C++?
    3 projects | /r/embedded | 10 May 2023
  • How to make smaller C and C++ binaries
    4 projects | news.ycombinator.com | 7 May 2023
    Bloaty is a nice tool.

    When I worked on Matter a couple years ago, we had the problem that its backend http://www.capstone-engine.org/ did not support Xtensa, and produced some Python tools that could take output from bloaty or similar data from readelf or elftools, and produce several kinds of report.

    https://github.com/project-chip/connectedhomeip/blob/master/...

  • Renaming Starlite to LiteStar
    3 projects | /r/Python | 2 Apr 2023
    My two cents from someone who has dealt with product name changes. Most recently I worked on the Chip repo which is now known as Matter. There are numerous references in the repo to chip despite the name change. See https://github.com/project-chip/connectedhomeip
  • Need help with my project
    1 project | /r/esp32 | 31 Mar 2023
    Not sure if I'm asking in the right place so I apologise ahead. I'm trying to get one of the example projects from Matter onto my esp32 (ESP-WROOM-32) using espresiff. I am doing this on my raspberry pi btw. The problem I'm having now is that it get's stuck when I'm building (idf.py build command). It's always around 800/1135 and it doesn't go past it. The one where it is currently stuck is: [804/1135] Building C object esp-idf/bt/CMakeFiles/__idf_bt.dir/host/nimble/nimble/nimble/host/src/ble_gatts_lcl.c.obj.
  • Failing to build Matter examples
    2 projects | /r/esp32 | 7 Mar 2023
    I checked out v1.0.0 of the Matter repo and ran
  • Building examples from project-chip/connectedhomeip repository and Matter community of developers
    1 project | /r/MatterProtocol | 17 Feb 2023
    I'm trying to build basic examples (light device for ESP32, Python controller for Raspberry Pi) following the guides on the official repository (https://github.com/project-chip/connectedhomeip). After solving some build errors, I managed to flash the ESP32 and run the controller on the RPi. However, I couldn't manage to commission the ESP32 from the RPi, because I kept getting a weird "mDNS: Timeout" error. Did anyone here have success with it? What am I missing?

What are some alternatives?

When comparing integration and connectedhomeip you can also consider the following projects:

home-assistant-goodwe-inverter - Experimental version of Home Assistant integration for Goodwe solar inverters

HomeKitADK

meross-homeassistant - Custom component that leverages the Meross IoT library to integrate with Homeassistant

homebridge-google-nest-sdm - A Homebridge plugin for Google Nest devices that uses the Google Smart Device Management API. Supports Cameras, Doorbells, Displays, and Thermostats. Includes support for HomeKit Secure Video.

hass-opensprinkler - OpenSprinkler Integration for Home Assistant

homebridge-raspbian-image - Official Homebridge Raspberry Pi Image based on Raspberry Pi OS Lite.

hacs-hubitat - A Hubitat integration for Home Assistant

Home Assistant - :house_with_garden: Open source home automation that puts local control and privacy first.

ical-sensor-homeassistant - an iCal Sensor for Home Assistant

esphome - ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems.

SonoffLAN - Control Sonoff Devices with eWeLink (original) firmware over LAN and/or Cloud from Home Assistant

android-captive-portal - generate 204