You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/faq/index.md
+56-4Lines changed: 56 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,61 @@ sidebar_position: 1
4
4
5
5
# FAQ
6
6
7
-
Frequently Asked Questions.
8
7
9
-
## General
8
+
## What is MQTT?
10
9
11
-
### Question 1?
12
-
Answer 1.
10
+
MQTT is an alternative way of communicating the readings. If you need it, you already know, and it is not required for use with Home Assistant.
11
+
12
+
## How do I use this with MQTT?
13
+
14
+
There's now support for MQTT with this integration thanks to the hard work of the ESPHome folks! Please reference [MQTT Client Component](https://esphome.io/components/mqtt.html) for how to get this set up.
15
+
16
+
## I'm seeing zeros on certain current clamps
17
+
18
+
First off, you will want to remove all filters for that sensor. Replace `filters: [ *throttle_avg, *pos ]`, etc, with `filters: []`.
19
+
20
+
If your data is hovering around 0, then you either don't have any load on that circuit or there's some other issue that hasn't come up before.
21
+
22
+
If you're seeing negative data, it could be a few things:
23
+
24
+
- First off, make sure you've properly installed the clamps according to the instructions. The L side of the clamp should point towards the load. For solar systems or similar, keep in mind that current flows from the solar panel to your electrical panel, not the other way.
25
+
- Make sure you've selected the correct phase in the configuration. You will get negative _and_ nonsense power readings if you select the wrong phase. You can't negate the data through a filter and expect it to be correct.
26
+
27
+
When you're done troubleshooting, remember to place the filters back.
28
+
29
+
## I'm getting negative values
30
+
31
+
- You may have put that clamp on the wire backwards
32
+
- You may have selected the wrong phase in the configuration
33
+
34
+
## I've recorded negative energy values and I want to reset them
35
+
36
+
Sensor values are saved to the esp32 flash. You can reset all sensors by implementing a [factory reset button](https://esphome.io/components/button/factory_reset.html).
37
+
38
+
## The readings on one or two of my sensors are crazy
39
+
40
+
Sometimes the CTs aren't fully plugged into the 3.5mm jacks on the Vue. It's often not an issue with the initial install, but with stuff getting jostled around as you put things back together.
41
+
42
+
This issue will often manifest as jumps between 0W and some other wattage for no reason.
43
+
44
+
Open up the panel, and make sure every connector is fully inserted into the Vue. Check if the problem is solved before putting the panel cover back on.
45
+
46
+
## My data readings go up and down
47
+
48
+
If your readings are within ±1W, then they're within the expected margin of error. The filters are designed to smooth out noise like this, and it's expected as no physical system can be perfect.
49
+
50
+
If the readings are significant outside of that, there may be a problem.
51
+
52
+
## I'm using a 64-bit Pi & can't compile!
53
+
54
+
Some users have successfully managed to build this on a 64-bit Pi: https://github.com/emporia-vue-local/esphome/discussions/147
55
+
56
+
~If you're using a 64-bit ARM OS, unfortunately you are unable to build this. It's not a limitation with this project, but a limitation with the upstream PlatformIO toolchains.~
57
+
58
+
You'll see an error like
59
+
60
+
```
61
+
Could not find the package with 'platformio/toolchain-esp32ulp @ ~1.22851.0' requirements for your system 'linux_aarch64'
62
+
```
63
+
64
+
You can try using a different computer. 32-bit and 64-bit x86 computers are both compatible (most laptops & desktops).
0 commit comments