Skip to content

Commit

Permalink
adding HA comments
Browse files Browse the repository at this point in the history
  • Loading branch information
JAlcocerT committed Dec 14, 2023
1 parent 0398f9f commit 2b46023
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 3 deletions.
59 changes: 56 additions & 3 deletions _posts/2023-07-20-rpi-iot-dht11-influxdb.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ SELECT * FROM dht_sensor ORDER BY time DESC LIMIT 10

### How can I install Home Assistant?

InfluxBD plays great with HomeAssistant, you can spin it with this [Docker-Compose](https://github.com/JAlcocerT/RPi/blob/main/Z_IoT/DHT11-to-InfluxDB/DHT11HomeAssistant-Stack.yml):
InfluxBD plays great with HomeAssistant, you can spin HA with this [Docker-Compose](https://github.com/JAlcocerT/RPi/blob/main/Z_IoT/DHT11-to-InfluxDB/DHT11HomeAssistant-Stack.yml):

```yml
version: "2.1"
Expand All @@ -256,6 +256,8 @@ services:
restart: unless-stopped
```
*You can also install [HA as an OS](https://www.home-assistant.io/installation/raspberrypi) in a RaspberryPi*
> The container will be exposed on port 8123, so you can access the Home Assistant web interface at http://localhost:8123
{: .prompt-info }
Expand Down Expand Up @@ -294,7 +296,7 @@ influxdb:
{: .prompt-info }
### Why priviledge flag?
#### Why priviledge flag?
The container needs access to the GPIO port, otherwise, you will observe this error in the container:
Expand All @@ -315,4 +317,55 @@ Traceback (most recent call last):
raise RuntimeError('Error accessing GPIO.')

RuntimeError: Error accessing GPIO.
```
```
### HA Integrations
You can check more HA integrations in the [official page](https://www.home-assistant.io/integrations/).
We have used the [InfluxDB integration](https://www.home-assistant.io/integrations/influxdb/) in this post, but there are [much more](https://analytics.home-assistant.io/integrations/):
* ESPHome: <https://www.home-assistant.io/integrations/esphome>
* Zigbee: <https://www.home-assistant.io/integrations/zha>
* MQTT: <https://www.home-assistant.io/integrations/mqtt/>
* <https://www.home-assistant.io/docs/automation/trigger/#webhook-trigger>
* <https://www.home-assistant.io/integrations/openweathermap>
* <https://www.home-assistant.io/integrations/forecast_solar>
* Syncthing: <https://www.home-assistant.io/integrations/syncthing/>
* <https://www.home-assistant.io/integrations/qbittorrent/>
* <https://www.home-assistant.io/integrations/sonarr/>
* <https://www.home-assistant.io/integrations/transmission/>
* <https://www.home-assistant.io/integrations/upnp>
* Smart Home devices: <https://www.home-assistant.io/integrations/tplink/>
* Torque: <https://www.home-assistant.io/integrations/torque/>
* Engine Performance & Diagnostic: <https://torque-bhp.com/>
* Crypto: <https://www.home-assistant.io/integrations/etherscan/>
> When buyind Iot devices, check that their integration is [classified as local push or local polling](https://www.home-assistant.io/blog/2016/02/12/classifying-the-internet-of-things/#classifiers) to avoid dependencies with 3rd Party clouds.
* You might be interested to look for **[Tasmota compatible devices](https://templates.blakadder.com/sensors.html)** *- a firmware for micro-controllers*.
* Or to any device compatible with **[ESPHome](<https://devices.esphome.io/)**
* Also, **Zegbee** will be useful: <https://www.zigbee2mqtt.io/>
Both are great to create a fully local IoT Home.
{: .prompt-info }
#### HACS - Non Official Integrations
You can find them here: <https://hacs.xyz/>
### HA add-ons
[HA Add-ons](https://www.home-assistant.io/addons/) are different concept than integrations.
Check them here: <https://community.home-assistant.io/tag/hassio-repository>
> Remember that Add-ons are only available if you've used the Home Assistant Operating System or Home Assistant Supervised installation method.
{: .prompt-info }
1 change: 1 addition & 0 deletions _posts/2023-12-11-rpi-gps-superset.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ render_with_liquid: false
+ [ ] Hardware Checks
+ [ ] Connecting everything

<https://www.youtube.com/watch?v=Z7cJ59sixpk>

## Apache Superset Setup

Expand Down
3 changes: 3 additions & 0 deletions _posts/2024-01-01-ML-rpi.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ image:
render_with_liquid: false
---

Build multimodal AI applications with cloud-native stack:
* <https://github.com/jina-ai/jina>
* <https://docs.jina.ai/cloud-nativeness/opentelemetry/>

## RPi with Vision

Expand Down
21 changes: 21 additions & 0 deletions _posts/2024-12-12-future-projects.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
title: Future Projects
author: JAlcocerT
date: 2024-12-12 00:10:00 +0800
categories: [IoT & Data Analytics]
tags: [Sensors]
image:
path: /img/metabase.png
alt: IoT Project with Python, MongoDB, DHT11/22 sensors and Metabase.
render_with_liquid: false
---

* <https://www.youtube.com/@proyectosmicropic/videos>

### ESP32 HA + Batteries

<https://www.youtube.com/watch?v=aR044Dk6c_0>

### ESP32 HA w ESPHome

<https://www.youtube.com/watch?v=pBT5p5XaWNE>
1 change: 1 addition & 0 deletions _tabs/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@ I have taken many ideas from the following sources (and many more):
* <https://www.youtube.com/@TechWorldwithNana>
* <https://www.youtube.com/@Jims-Garage>
* <https://www.youtube.com/@AwesomeOpenSource>
* <https://www.youtube.com/@ProgramarfacilArduino> - Great for HA, ESP
* <https://wiki.opensourceisawesome.com/>
* <https://www.linuxfordevices.com/>

0 comments on commit 2b46023

Please sign in to comment.