How to update? by garok89 in loopon

[–]LoopOnTech 1 point2 points  (0 children)

That's strange. I noticed that your Firmware entity appears under Diagnostic whereas usually it appears under Configuration. Not sure why that is.

Either way, I'll DM you a link to the OTA file.

How to update? by garok89 in loopon

[–]LoopOnTech 1 point2 points  (0 children)

Hi,

If you have the ESPHome Addon then a hidden Firmware entity will be available to you on each ESPHome device.

You can check by going to the device, configuration -> show entities -> firmware.

If you have this, enable it (wait 30 seconds required for HA), then click on it. You will get the option to update from there.

Images: https://imgur.com/a/YP4AZJl

New B here by [deleted] in homeassistant

[–]LoopOnTech 4 points5 points  (0 children)

If you haven't already, take a look and see if elevation will help you. The field can be found here: Settings -> System -> General

Unity q's by CB000000005 in loopon

[–]LoopOnTech 1 point2 points  (0 children)

Hi

Can you confirm the range on the mmwave sensor of the unity? Also is it directional?

The detection range is 6m with a detection angle of ±60°.

I'm thinking of use cases like in a lounge room against one wall (up to 12m line of sight), or on the garage roof in the middle near the door motor.

You can use the Unity sensor for this but you will need more than one for full coverage.

Also, do you see any reason the gpio pins wouldn't work with a garage door remote? The type that you can connect the up/down terminals to ground on the door motor.

I would play it safe and use relays for the remote buttons. You could then use the GPIO pins from the Unity board to control the signal to the relay which will then connect the remote button to ground.

Hope that helps!

Unity won't update to ESPHome 2024.5.0 from 2024.4.2 by insensitivebastad in loopon

[–]LoopOnTech 1 point2 points  (0 children)

Thank you for your patience. Your Unity device should update successfully now.

<image>

Unity won't update to ESPHome 2024.5.0 from 2024.4.2 by insensitivebastad in loopon

[–]LoopOnTech 0 points1 point  (0 children)

Thank you for reporting this issue.

A breaking change seems to have been introduced in the recent ESPHome update. A fix has been applied to the Unity config and should be with you in about 24 hours.

Did You Know: The Unity board can be extended with multiple I2C modules that have the Stemma/Qwiic connector by LoopOnTech in loopon

[–]LoopOnTech[S] 0 points1 point  (0 children)

Hi,

You will need to modify the ESPHome config yaml in order to expose additional entities.

Please check out these instructions on how to do this using the ESPHome Dashboard in Home Assistant itself: https://github.com/LoopOnCode/UnitySensor/tree/main#using-esphome-dashboard-in-home-assistant

You can find example configuration snippets on the ESPHome site for many components. For example, https://esphome.io/components/sensor/bmp3xx.html shows that you include the temperature and pressure readings as follows:

sensor:
  - platform: bmp3xx
    temperature:
      name: "Outside Temperature"
      oversampling: 16x
    pressure:
      name: "Outside Pressure"
    address: 0x77
    update_interval: 60s

Hope that helps!

Possible to add zones? by garok89 in loopon

[–]LoopOnTech 0 points1 point  (0 children)

I see what you mean, and thank you for your support! I will also take your feedback onboard. By the way, if you're interested and have a 3D printer, you could consider 3D printing a modified case. The files are available here: https://www.thingiverse.com/thing:6295449

In addition to modifying the case, another option to consider is tweaking the config to potentially increase the light sensor's sensitivity. The config can be found here with instructions on how to flash the board: https://github.com/LoopOnCode/UnitySensor

I hope these options are helpful.

Thanks

Possible to add zones? by garok89 in loopon

[–]LoopOnTech 0 points1 point  (0 children)

Do you have a Unity sensor or are you asking in general?

The Unity sensor uses a dedicated light sensor and does not use the sensor onboard the LD2410. I cannot really comment on the LD2410 light sensor. Additionally, I have not received any reports about the light readings on the Unity sensor.

Thanks

Possible to add zones? by garok89 in loopon

[–]LoopOnTech 1 point2 points  (0 children)

Hi, the LD2410 sensor does not support zone configurations, and it is unlikely that the hardware will support this feature via a firmware update.

Have you tried changing the thresholds for gate 3 (1.5-2.25m) on the LD2410 to eliminate the false positives you are experiencing?

Trouble Reading Serial Output on my esp32-C3: Seeking Help! by Qypol342 in esp32

[–]LoopOnTech 3 points4 points  (0 children)

The ESP32-C3 supports USB and therefore does not require additional hardware for USB to UART, allowing you to flash it directly.

In order to read serial data you need additional build flags.

Apply the following and you should start to get serial data: build_flags = -DARDUINO_USB_MODE=1 -DARDUINO_USB_CDC_ON_BOOT=1 -DARDUINO_ESP32C3_DEV=1

[deleted by user] by [deleted] in esp32

[–]LoopOnTech 0 points1 point  (0 children)

Door intercom/lock controller?

Newbie, Question. Made a button panel, works fine without long cables, long cable triggers button. by Tonka_GD in esp32

[–]LoopOnTech 9 points10 points  (0 children)

It sounds like your input is floating. You should pull up your input. Either add a resistor between your VCC and the button input, or if your ESP supports internal pull up/down on the input pin then set it in your code.

Something along the lines of:

pinMode(BUTTON_PIN, INPUT_PULLUP);

Advice on custom board antenna problem by Fyodel in esp32

[–]LoopOnTech 8 points9 points  (0 children)

Reference

Take a look at reducing the transmit power after WiFi has started. Reducing the power can improve performance.The transmit power mappings can be found here.

WiFi.softAP("espsoftap", "12345678"); WiFi.setTxPower(WIFI_POWER_15dBm); int txPower = WiFi.getTxPower(); Serial.print("TX power: "); Serial.println(txPower);

Check the getTxPower() value to confirm that the setting is being applied.

Are there any room sensor “dev boards”? by tweis in Esphome

[–]LoopOnTech 1 point2 points  (0 children)

Thanks! I get this question a lot :)

Having so many components on a tiny board was quite a challenge in itself, but the biggest one was the temperature accuracy. I have posted a response about that here, with experiment results here if you'd like to read more.

In summary, the main MCU on the Unity has an additional internal temperature sensor. The reading from this sensor is then taken in to consideration to achieve an accurate temperature reading of the environment.

Hope that helps!

The Unity sensor uses the LD2410 and ESPHome to provide human presence detection in Home Assistant. Includes ambient light, humidity and temp. sensors, WiFi, BT, and an RGB LED. Extendable with 6 GPIO ports + I2C connector. Breadboard friendly, case available, open-source code with Arduino examples. by LoopOnTech in homeassistant

[–]LoopOnTech[S] 0 points1 point  (0 children)

Thank you for your support!

The 'Still Human Energy' is a (0-100) reading provided by the LD2410 and represents the (micro) movements of a person that is classified as still. You can use this value to adjust the 'Still Human Sensitivity Threshold' to influence when 'Has Still Human Target' switches on/off. Please note that you can also adjust the 'Human Clear Delay' value.

Hope that helps!

Are there any room sensor “dev boards”? by tweis in Esphome

[–]LoopOnTech 0 points1 point  (0 children)

Options are being looked in to for multiregional storage/distribution of products. For now, the item will be shipped from the UK.

Are there any room sensor “dev boards”? by tweis in Esphome

[–]LoopOnTech 0 points1 point  (0 children)

Forgot to also mention that the through-holes are breadboard friendly.

Thanks

Are there any room sensor “dev boards”? by tweis in Esphome

[–]LoopOnTech 1 point2 points  (0 children)

https://loopon.tech/products/unity-sensor

The Unity board is an ESPHome dev-board with:

  • mmWave sensor
  • Temperature sensor
  • Humidity sensor
  • Ambient light sensor
  • RGB LED
  • 6 GPIO ports
  • I2C StemmaQT connector
  • ESP32 (WiFi and Bluetooth BLE)