packets arriving at Home Assistant, btmon can't see them

Ask questions about the GEM here.
Post Reply
dvl
Posts: 15
Joined: Wed Jan 19, 2022 1:22 pm

packets arriving at Home Assistant, btmon can't see them

Post by dvl » Sun Aug 28, 2022 8:00 am

The GEM is configured to send to 10.55.0.38 port 8000. The Home Assistant configuration includes:

Code: Select all

greeneye_monitor:
  port: 8000
  monitors:
    - serial_number: "[redacted]"
      channels:
        - number: 1
          name: total_power1
        - number: 2
          name: total_power2
I see nothing related to GEM on the Energy page within HA.

This shows the packets from GEM arriving at the HA host:

Code: Select all

[slocum dan ~] % sudo tcpdump -ni ix2 port 8000
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on ix2, link-type EN10MB (Ethernet), capture size 262144 bytes
12:47:53.870514 IP 10.52.0.71.1091 > 10.55.0.38.8000: Flags [S], seq 4117739715, win 16384, options [mss 1460,nop,wscale 0,nop,nop,TS val 102516 ecr 0], length 0
12:47:56.870938 IP 10.52.0.71.1091 > 10.55.0.38.8000: Flags [S], seq 4117739715, win 16384, options [mss 1460], length 0
12:47:59.871023 IP 10.52.0.71.1091 > 10.55.0.38.8000: Flags [S], seq 4117739715, win 16384, options [mss 1460], length 0
12:48:02.871153 IP 10.52.0.71.1091 > 10.55.0.38.8000: Flags [S], seq 4117739715, win 16384, options [mss 1460], length 0
12:48:04.371446 IP 10.52.0.71.1092 > 10.55.0.38.8000: Flags [S], seq 1126610498, win 16384, options [mss 1460,nop,wscale 0,nop,nop,TS val 103566 ecr 0], length 0
12:48:07.371390 IP 10.52.0.71.1092 > 10.55.0.38.8000: Flags [S], seq 1126610498, win 16384, options [mss 1460,nop,wscale 0,nop,nop,TS val 103866 ecr 0], length 0
btmon is not showing any output regarding those packets. FYI, HA is not running during this test.

Code: Select all

[slocum dan ~] % python btmon3.py --print --debug --device-type=gem --ip --ip-mode=server --ip-port 8000
2022/08/28 12:49:41 btmon: 4.0.0
2022/08/28 12:49:41 python: 3.9.13 (main, Jul 16 2022, 12:14:30) 
[Clang 13.0.0 (git@github.com:llvm/llvm-project.git llvmorg-13.0.0-0-gd7b669b3a
2022/08/28 12:49:41 platform: freebsd13
2022/08/28 12:49:41 device type: gem
2022/08/28 12:49:41 device list: ['']
2022/08/28 12:49:41 packet format: gem48ptbin
2022/08/28 12:49:41 schema: counters
2022/08/28 12:49:41 buffer size: 120
2022/08/28 12:49:41 SOCKET: bind host: 
2022/08/28 12:49:41 SOCKET: bind port: 8000
2022/08/28 12:49:41 packet format is GEM48PTBinaryPacket
2022/08/28 12:49:41 using collector SocketServerCollector
2022/08/28 12:49:41 using 1 processors:
2022/08/28 12:49:41   PrintProcessor
2022/08/28 12:49:41 setup SocketServerCollector
2022/08/28 12:49:41 SOCKET: binding to :8000
2022/08/28 12:49:41 setup PrintProcessor
2022/08/28 12:49:41 SOCKET: waiting for connection
There is no further output from btmon. This makes me think: if btmon can't do anything with the packets, how can HA?

Do you have any suggestions please?

Thank you
dvl
Posts: 15
Joined: Wed Jan 19, 2022 1:22 pm

Re: packets arriving at Home Assistant, btmon can't see them

Post by dvl » Sun Aug 28, 2022 4:39 pm

It was my firewall. I was allowing port 8001, not port 8000.

Now I have

Code: Select all

2022/08/28 21:35:33 SOCKET: waiting for connection
2022/08/28 21:37:18 waiting for data from device
2022/08/28 21:37:18 reading 1 of 1 packets
2022/08/28 21:37:23 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/08/28 21:37:23 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/08/28 21:37:23 SOCKET: read 1 of 1 bytes from socket: b'07'
2022/08/28 21:37:23 read failed: expected PACKET_ID 0x5, got 0x7
2022/08/28 21:37:23 reading 1 of 1 packets
2022/08/28 21:37:23 SOCKET: read 1 of 1 bytes from socket: b'04'
2022/08/28 21:37:23 read failed: expected START_HEADER0 0xfe, got 0x4
2022/08/28 21:37:23 reading 1 of 1 packets
2022/08/28 21:37:23 SOCKET: read 1 of 1 bytes from socket: b'c9'
2022/08/28 21:37:23 read failed: expected START_HEADER0 0xfe, got 0xc9
2022/08/28 21:37:23 reading 1 of 1 packets
...
ben
Site Admin
Posts: 4266
Joined: Fri Jun 04, 2010 9:39 am

Re: packets arriving at Home Assistant, btmon can't see them

Post by ben » Mon Aug 29, 2022 9:11 am

dvl wrote:
Sun Aug 28, 2022 4:39 pm
It was my firewall. I was allowing port 8001, not port 8000.

Now I have

Code: Select all

2022/08/28 21:35:33 SOCKET: waiting for connection
2022/08/28 21:37:18 waiting for data from device
2022/08/28 21:37:18 reading 1 of 1 packets
2022/08/28 21:37:23 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/08/28 21:37:23 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/08/28 21:37:23 SOCKET: read 1 of 1 bytes from socket: b'07'
2022/08/28 21:37:23 read failed: expected PACKET_ID 0x5, got 0x7
2022/08/28 21:37:23 reading 1 of 1 packets
2022/08/28 21:37:23 SOCKET: read 1 of 1 bytes from socket: b'04'
2022/08/28 21:37:23 read failed: expected START_HEADER0 0xfe, got 0x4
2022/08/28 21:37:23 reading 1 of 1 packets
2022/08/28 21:37:23 SOCKET: read 1 of 1 bytes from socket: b'c9'
2022/08/28 21:37:23 read failed: expected START_HEADER0 0xfe, got 0xc9
2022/08/28 21:37:23 reading 1 of 1 packets
...
I think it's expecting Bin-48-NET-Time and you're set to Bin-32-Net based on the expected PACKET_ID 0x5 line.
Ben
Brultech Research Inc.
E: ben(at)brultech.com
dvl
Posts: 15
Joined: Wed Jan 19, 2022 1:22 pm

Re: packets arriving at Home Assistant, btmon can't see them

Post by dvl » Thu Sep 01, 2022 11:02 am

ben wrote:
Mon Aug 29, 2022 9:11 am
I think it's expecting Bin-48-NET-Time and you're set to Bin-32-Net based on the expected PACKET_ID 0x5 line.
Thank you. That fixed it.

Next step, debug why some circuit, such as the dishwasher on channel 17, are using power when there's nothing powered on. -1216W is a lot for the powered off dishwasher.

Channels 1 & 2 are my two incoming power circuits to this 200A panel..

Checking with my electricity supply, my peak consumption yesterday was 2.72 kWh at about 11pm.

Code: Select all

[homeassistant dan ~] % python btmon3.py --print --debug --device-type=gem --ip --ip-mode=server --ip-port 8000                                  15:41:01
2022/09/01 15:41:07 btmon: 4.0.0
2022/09/01 15:41:07 python: 3.9.13 (main, Jul 16 2022, 12:14:30) 
[Clang 13.0.0 (git@github.com:llvm/llvm-project.git llvmorg-13.0.0-0-gd7b669b3a
2022/09/01 15:41:07 platform: freebsd13
2022/09/01 15:41:07 device type: gem
2022/09/01 15:41:07 device list: ['']
2022/09/01 15:41:07 packet format: gem48ptbin
2022/09/01 15:41:07 schema: counters
2022/09/01 15:41:07 buffer size: 120
2022/09/01 15:41:07 SOCKET: bind host: 
2022/09/01 15:41:07 SOCKET: bind port: 8000
2022/09/01 15:41:07 packet format is GEM48PTBinaryPacket
2022/09/01 15:41:07 using collector SocketServerCollector
2022/09/01 15:41:07 using 1 processors:
2022/09/01 15:41:07   PrintProcessor
2022/09/01 15:41:07 setup SocketServerCollector

...


2022/09/01 15:41:20   01121002:   3 of 120 (1662046880)
2022/09/01 15:41:20 processing with PrintProcessor
2022/09/01 15:41:20 2 buffered packets sn:[redacted]
2022/09/01 15:41:20 1 calculated packets sn:[redacted]

2022/09/01 15:41:20: Serial:   [redacted]
2022/09/01 15:41:20: Voltage:  120.30V
2022/09/01 15:41:20: Ch01:  -8571.361443KWh (-4811W)
2022/09/01 15:41:20: Ch02:  -9987.966444KWh (-2294W)
2022/09/01 15:41:20: Ch03:  -9993.995221KWh (-2673W)
2022/09/01 15:41:20: Ch04:  -9951.963081KWh (-2646W)
2022/09/01 15:41:20: Ch05:  -9927.133748KWh (-1267W)
2022/09/01 15:41:20: Ch06:  -9819.925455KWh (-1457W)
2022/09/01 15:41:20: Ch07: -18950.979804KWh (-1183W)
2022/09/01 15:41:20: Ch08:  -9755.428939KWh (-1332W)
2022/09/01 15:41:20: Ch09:  -9822.740874KWh (-1211W)
2022/09/01 15:41:20: Ch10:  -9618.625837KWh (-1343W)
2022/09/01 15:41:20: Ch11: -16364.771457KWh (-3059W)
2022/09/01 15:41:20: Ch12:  -8118.756151KWh (-2864W)
2022/09/01 15:41:20: Ch13:  -9956.994587KWh (-1181W)
2022/09/01 15:41:20: Ch14: -32077.607970KWh (-3311W)
2022/09/01 15:41:20: Ch15:  -9815.062046KWh (-1208W)
2022/09/01 15:41:20: Ch16:  -9789.840144KWh (-1200W)
2022/09/01 15:41:20: Ch17:  -9705.062162KWh (-1216W)
2022/09/01 15:41:20: Ch18:  -9739.329912KWh (-1265W)
2022/09/01 15:41:20: Ch19:  -9784.490544KWh (-1248W)
2022/09/01 15:41:20: Ch20:  -7734.588904KWh (-1455W)
2022/09/01 15:41:20: Ch21: -12789.259477KWh (-8319W)
2022/09/01 15:41:20: Ch22: -10952.221364KWh (-12761W)
2022/09/01 15:41:20: Ch23: -26220.321306KWh ( -734W)
2022/09/01 15:41:20: Ch24: -10714.004815KWh (-1329W)
2022/09/01 15:41:20: Ch25: -50986.487610KWh ( -392W)
2022/09/01 15:41:20: Ch26: -16127.717301KWh (-21754W)
2022/09/01 15:41:20: Ch27: -10151.086612KWh (-3931W)
2022/09/01 15:41:20: Ch28:  -9820.321112KWh (-1285W)
2022/09/01 15:41:20: Ch29:  -9807.707745KWh (-1276W)
2022/09/01 15:41:20: Ch30:  -9822.553335KWh (-1278W)
2022/09/01 15:41:20: Ch31:  -9834.681717KWh (-1281W)
2022/09/01 15:41:20: Ch32:  -9819.882486KWh (-1277W)
2022/09/01 15:41:20: p1:               0
2022/09/01 15:41:20: p2:               0
2022/09/01 15:41:20: p3:               0
2022/09/01 15:41:20: p4:               0
2022/09/01 15:41:20: t1:        0.000000
2022/09/01 15:41:20: t2:        0.000000
2022/09/01 15:41:20: t3:        0.000000
2022/09/01 15:41:20: t4:        0.000000
2022/09/01 15:41:20: t5:        0.000000
2022/09/01 15:41:20: t6:        0.000000
2022/09/01 15:41:20: t7:        0.000000
2022/09/01 15:41:20: t8:        0.000000
2022/09/01 15:41:20 SOCKET: waiting for connection
2022/09/01 15:41:20 waiting for data from device
2022/09/01 15:41:20 reading 1 of 1 packets
^C2022/09/01 15:41:21 SOCKET: closing connection
2022/09/01 15:41:21 cleanup PrintProcessor
2022/09/01 15:41:21 cleanup SocketServerCollector
2022/09/01 15:41:21 SOCKET: closing socket
My settings:
Current settings
Current settings
Screen Shot 2022-09-01 at 11.32.54 AM.png (169.47 KiB) Viewed 1517 times
channel settings
channel settings
Screen Shot 2022-09-01 at 11.46.13 AM.png (189 KiB) Viewed 1517 times
CT settings
CT settings
Screen Shot 2022-09-01 at 11.46.37 AM.png (231.9 KiB) Viewed 1517 times
ben
Site Admin
Posts: 4266
Joined: Fri Jun 04, 2010 9:39 am

Re: packets arriving at Home Assistant, btmon can't see them

Post by ben » Thu Sep 01, 2022 11:35 am

Make sure you don't have a Micro hooked up like a Split-CT. That will cause bleed over to other channels due to overloading the GEM. Won't cause any damage.
Ben
Brultech Research Inc.
E: ben(at)brultech.com
dvl
Posts: 15
Joined: Wed Jan 19, 2022 1:22 pm

Re: packets arriving at Home Assistant, btmon can't see them

Post by dvl » Thu Sep 01, 2022 2:43 pm

ben wrote:
Thu Sep 01, 2022 11:35 am
Make sure you don't have a Micro hooked up like a Split-CT. That will cause bleed over to other channels due to overloading the GEM. Won't cause any damage.
I have not opened the panel to verify the only two splits I have. I thought they were 1 and 2.

To test this, I changed the two channels set to a split to Micro.The sum of ch1 and ch2 now looks more like what I think my total consumption should be. But none of the channels are zero yet.

For example, I know the dryer channel should be zero because the dryer is not plugged in. NOTE: channels without a connected CT are showing loads. Channels 28-32 do not have a connected CT.

Could this be me using Micro-80 on 20A and 40A circuits?

From my order I see: :"Package : Package A, CT Package : Package H" And then 14x Micro-80 Donut Style CT.

Thank you.

Code: Select all

[homeassistant dan ~] % sudo service homeassistant stop
Stopping homeassistant.
[homeassistant dan ~] % python btmon3.py --print --debug --device-type=gem --ip --ip-mode=server --ip-port 8000
2022/09/01 19:20:22 btmon: 4.0.0
2022/09/01 19:20:22 python: 3.9.13 (main, Jul 16 2022, 12:14:30) 
[Clang 13.0.0 (git@github.com:llvm/llvm-project.git llvmorg-13.0.0-0-gd7b669b3a
2022/09/01 19:20:22 platform: freebsd13
2022/09/01 19:20:22 device type: gem
2022/09/01 19:20:22 device list: ['']
2022/09/01 19:20:22 packet format: gem48ptbin
2022/09/01 19:20:22 schema: counters
2022/09/01 19:20:22 buffer size: 120
2022/09/01 19:20:22 SOCKET: bind host: 
2022/09/01 19:20:22 SOCKET: bind port: 8000
2022/09/01 19:20:22 packet format is GEM48PTBinaryPacket
2022/09/01 19:20:22 using collector SocketServerCollector
2022/09/01 19:20:22 using 1 processors:
2022/09/01 19:20:22   PrintProcessor
2022/09/01 19:20:22 setup SocketServerCollector
2022/09/01 19:20:22 SOCKET: binding to :8000
2022/09/01 19:20:22 setup PrintProcessor
2022/09/01 19:20:22 SOCKET: waiting for connection
2022/09/01 19:20:23 waiting for data from device
2022/09/01 19:20:23 reading 1 of 1 packets
2022/09/01 19:20:27 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:27 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:27 SOCKET: read 1 of 1 bytes from socket: b'05'
2022/09/01 19:20:27 SOCKET: read 619 of 619 bytes from socket: b'04c2e926c43207bf661961084eca8962081a707f590895c02453080c1e493c089fe15fe30ffe52592e0831d1be3c087a000d1108022310b90db7f368d006508a8c5908fc9ccbe51ae3ef1c3b081ba4b1350835727d2308fbb6e12a087f3b8f3408270ddb7c06ef1d35ba0a78627b3109b052d7fa15ce2737fc083801d4bc2a263cda950d04a063850881633d3c087d47883908a90bb83c08ccf7523f080150253c0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000059063b03ae099809cf0486057e040f058f0411051f0c1a0b1f059d0d32052b05b104e304d2049d05f104dd1413032f055d017956f30fdb04b604b604b804b404100f0e0d0c0b0a090807060504030201520a000b2c045f0335042d042d048e04f2033704030449042a06dd057304590780047b0424043d04a1049a045204b109570663049103ab24210540041d04200422041f04ffffffffffffffffffffffffffffffffffffffffffff0077d607b3fd0315f90533b5c600000000000000000000000000020000000000000000000000000000160901131425'
2022/09/01 19:20:27 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:27 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:27 SOCKET: read 1 of 1 bytes from socket: b'12'
2022/09/01 19:20:27 adding buffer for 01121002
2022/09/01 19:20:27 buffering packet ts:1662060027 sn:[redacted]
2022/09/01 19:20:27 SOCKET: closing connection
2022/09/01 19:20:27 buffer info:
2022/09/01 19:20:27   01121002:   1 of 120 (1662060027)
2022/09/01 19:20:27 processing with PrintProcessor
2022/09/01 19:20:27 not enough data for 01121002
2022/09/01 19:20:27 SOCKET: waiting for connection
2022/09/01 19:20:27 waiting for data from device
2022/09/01 19:20:27 reading 1 of 1 packets
2022/09/01 19:20:32 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:32 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:32 SOCKET: read 1 of 1 bytes from socket: b'05'
2022/09/01 19:20:32 SOCKET: read 619 of 619 bytes from socket: b'04c10347c432075777196108aafb896208efa07f590848d82453086339493c08d2f75fe30feb6b592e080ce8be3c08f7190d11082c6110b90d372b69d006aba18c5908b0decbe51ab4071d3b08c8bbb1350886897d230844cfe12a0869538f34080f29db7c06d73635ba0a05cb7b31098861d7fa151a4237fc083508d4bc2ae7eadb950d28f0638508ec7b3d3c08b460883908e624b83c081a11533f083b69253c08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f106d503180bfa0a7e0434054004c2045704e304ce0cdc0acf043b0de604dc047904a90499046705c204b114310309059301fb5594102305f705f905fe05f805100f0e0d0c0b0a090807060504030201520a000b9a04cc03b404ad0407046504d4031304dc0325049306b80531041e073c043704f7030c0477046d0421048c093f063304a1039a24450563040505070507050505ffffffffffffffffffffffffffffffffffffffffffff0086910818bc0446d80638b5c60000000000000000000000000002000000000000000000000000000016090113142a'
2022/09/01 19:20:32 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:32 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:32 SOCKET: read 1 of 1 bytes from socket: b'86'
2022/09/01 19:20:32 buffering packet ts:1662060032 sn:[redacted]
2022/09/01 19:20:32 SOCKET: closing connection
2022/09/01 19:20:32 buffer info:
2022/09/01 19:20:32   01121002:   2 of 120 (1662060032)
2022/09/01 19:20:32 processing with PrintProcessor
2022/09/01 19:20:32 2 buffered packets sn:[redacted]
2022/09/01 19:20:32 1 calculated packets sn:[redacted]

2022/09/01 19:20:32: Serial: 01121002
2022/09/01 19:20:32: Voltage:  121.70V
2022/09/01 19:20:32: Ch01:  -8587.915307KWh (-1643W)
2022/09/01 19:20:32: Ch02:  -9996.888131KWh ( -849W)
2022/09/01 19:20:32: Ch03: -10003.596776KWh (-2527W)
2022/09/01 19:20:32: Ch04:  -9961.465240KWh (-2500W)
2022/09/01 19:20:32: Ch05:  -9931.850544KWh (-1213W)
2022/09/01 19:20:32: Ch06:  -9825.325041KWh (-1399W)
2022/09/01 19:20:32: Ch07: -18955.340787KWh (-1136W)
2022/09/01 19:20:32: Ch08:  -9760.375176KWh (-1276W)
2022/09/01 19:20:32: Ch09:  -9827.467381KWh (-1170W)
2022/09/01 19:20:32: Ch10:  -9623.836015KWh (-1305W)
2022/09/01 19:20:32: Ch11: -16372.064794KWh (-3182W)
2022/09/01 19:20:32: Ch12:  -8129.543624KWh (-2841W)
2022/09/01 19:20:32: Ch13:  -9961.701950KWh (-1195W)
2022/09/01 19:20:32: Ch14: -32090.136938KWh (-3364W)
2022/09/01 19:20:32: Ch15:  -9819.860174KWh (-1219W)
2022/09/01 19:20:32: Ch16:  -9794.605211KWh (-1212W)
2022/09/01 19:20:32: Ch17:  -9709.768926KWh (-1193W)
2022/09/01 19:20:32: Ch18:  -9744.216694KWh (-1243W)
2022/09/01 19:20:32: Ch19:  -9789.318500KWh (-1224W)
2022/09/01 19:20:32: Ch20:  -7740.150404KWh (-1428W)
2022/09/01 19:20:32: Ch21: -12798.256273KWh (-1275W)
2022/09/01 19:20:32: Ch22: -10968.028375KWh (-5353W)
2022/09/01 19:20:32: Ch23: -26222.981229KWh ( -760W)
2022/09/01 19:20:32: Ch24: -10719.782834KWh (-1346W)
2022/09/01 19:20:32: Ch25: -50987.955215KWh ( -357W)
2022/09/01 19:20:32: Ch26: -16207.997931KWh (-22054W)
2022/09/01 19:20:32: Ch27: -10166.016011KWh (-4103W)
2022/09/01 19:20:32: Ch28:  -9825.111319KWh (-1250W)
2022/09/01 19:20:32: Ch29:  -9812.493703KWh (-1291W)
2022/09/01 19:20:32: Ch30:  -9827.344277KWh (-1292W)
2022/09/01 19:20:32: Ch31:  -9839.485234KWh (-1295W)
2022/09/01 19:20:32: Ch32:  -9824.673083KWh (-1291W)
2022/09/01 19:20:32: p1:               0
2022/09/01 19:20:32: p2:               0
2022/09/01 19:20:32: p3:               0
2022/09/01 19:20:32: p4:               0
2022/09/01 19:20:32: t1:        0.000000
2022/09/01 19:20:32: t2:        0.000000
2022/09/01 19:20:32: t3:        0.000000
2022/09/01 19:20:32: t4:        0.000000
2022/09/01 19:20:32: t5:        0.000000
2022/09/01 19:20:32: t6:        0.000000
2022/09/01 19:20:32: t7:        0.000000
2022/09/01 19:20:32: t8:        0.000000
2022/09/01 19:20:32 SOCKET: waiting for connection
2022/09/01 19:20:32 waiting for data from device
2022/09/01 19:20:32 reading 1 of 1 packets
2022/09/01 19:20:37 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:37 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:37 SOCKET: read 1 of 1 bytes from socket: b'05'
2022/09/01 19:20:37 SOCKET: read 619 of 619 bytes from socket: b'04c0c067c4320782881961088c2e8a620834d37f590861f12453081b56493c08780f60e30f3786592e085a00bf3c08e4340d1108399c10b90d1e6469d006b9b98c5908ce20cce51a57201d3b0833d4b13508eca17d2308b6e8e12a088b6c8f34082846db7c06fa4e35ba0a24337c31097a71d7fa15af5b37fc080e0fd4bc2a899bdd950d574064850870943d3c081f798839085d3db83c089929533f08a981253c0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000023060a0337091909cf04830580040b05ed047205ef0b730bbb041e0dd704cb048b04c104af047c05f304fb1415033d055c01a9560c10f704880489048c048a04100f0e0d0c0b0a090807060504030201520a000bfc0336030004f80337049204fd033e044d04930485062206310418073904340405041d0483047b044a04ac0953065d048703c5241d054304f003f203f203f003ffffffffffffffffffffffffffffffffffffffffffff0022930717c20394af053db5c60000000000000000000000000002000000000000000000000000000016090113142f'
2022/09/01 19:20:37 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:37 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:37 SOCKET: read 1 of 1 bytes from socket: b'e8'
2022/09/01 19:20:37 buffering packet ts:1662060037 sn:[redacted]
2022/09/01 19:20:37 SOCKET: closing connection
2022/09/01 19:20:37 buffer info:
2022/09/01 19:20:37   01121002:   3 of 120 (1662060037)
2022/09/01 19:20:37 processing with PrintProcessor
2022/09/01 19:20:37 2 buffered packets sn:[redacted]
2022/09/01 19:20:37 1 calculated packets sn:[redacted]

2022/09/01 19:20:37: Serial: [redacted]
2022/09/01 19:20:37: Voltage:  121.60V
2022/09/01 19:20:37: Ch01:  -8587.917636KWh (-1676W)
2022/09/01 19:20:37: Ch02:  -9996.889352KWh ( -879W)
2022/09/01 19:20:37: Ch03: -10003.600394KWh (-2605W)
2022/09/01 19:20:37: Ch04:  -9961.468814KWh (-2573W)
2022/09/01 19:20:37: Ch05:  -9931.852329KWh (-1285W)
2022/09/01 19:20:37: Ch06:  -9825.327083KWh (-1470W)
2022/09/01 19:20:37: Ch07: -18955.342469KWh (-1210W)
2022/09/01 19:20:37: Ch08:  -9760.377046KWh (-1346W)
2022/09/01 19:20:37: Ch09:  -9827.469109KWh (-1244W)
2022/09/01 19:20:37: Ch10:  -9623.837930KWh (-1378W)
2022/09/01 19:20:37: Ch11: -16372.068994KWh (-3023W)
2022/09/01 19:20:37: Ch12:  -8129.547671KWh (-2913W)
2022/09/01 19:20:37: Ch13:  -9961.703660KWh (-1231W)
2022/09/01 19:20:37: Ch14: -32090.141639KWh (-3385W)
2022/09/01 19:20:37: Ch15:  -9819.861926KWh (-1261W)
2022/09/01 19:20:37: Ch16:  -9794.606948KWh (-1250W)
2022/09/01 19:20:37: Ch17:  -9709.770661KWh (-1249W)
2022/09/01 19:20:37: Ch18:  -9744.218504KWh (-1302W)
2022/09/01 19:20:37: Ch19:  -9789.320287KWh (-1286W)
2022/09/01 19:20:37: Ch20:  -7740.152473KWh (-1489W)
2022/09/01 19:20:37: Ch21: -12798.257989KWh (-1235W)
2022/09/01 19:20:37: Ch22: -10968.035779KWh (-5331W)
2022/09/01 19:20:37: Ch23: -26222.982363KWh ( -816W)
2022/09/01 19:20:37: Ch24: -10719.784653KWh (-1309W)
2022/09/01 19:20:37: Ch25: -50987.955702KWh ( -350W)
2022/09/01 19:20:37: Ch26: -16208.028696KWh (-22150W)
2022/09/01 19:20:37: Ch27: -10166.021713KWh (-4105W)
2022/09/01 19:20:37: Ch28:  -9825.113062KWh (-1255W)
2022/09/01 19:20:37: Ch29:  -9812.495440KWh (-1250W)
2022/09/01 19:20:37: Ch30:  -9827.346017KWh (-1252W)
2022/09/01 19:20:37: Ch31:  -9839.486976KWh (-1254W)
2022/09/01 19:20:37: Ch32:  -9824.674820KWh (-1250W)
2022/09/01 19:20:37: p1:               0
2022/09/01 19:20:37: p2:               0
2022/09/01 19:20:37: p3:               0
2022/09/01 19:20:37: p4:               0
2022/09/01 19:20:37: t1:        0.000000
2022/09/01 19:20:37: t2:        0.000000
2022/09/01 19:20:37: t3:        0.000000
2022/09/01 19:20:37: t4:        0.000000
2022/09/01 19:20:37: t5:        0.000000
2022/09/01 19:20:37: t6:        0.000000
2022/09/01 19:20:37: t7:        0.000000
2022/09/01 19:20:37: t8:        0.000000
2022/09/01 19:20:37 SOCKET: waiting for connection
2022/09/01 19:20:37 waiting for data from device
2022/09/01 19:20:37 reading 1 of 1 packets
2022/09/01 19:20:42 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:42 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:42 SOCKET: read 1 of 1 bytes from socket: b'05'
2022/09/01 19:20:42 SOCKET: read 619 of 619 bytes from socket: b'04c06185c43207b3961961084a5a8a62086dfe7f59085407255308b56f493c08032460e30f679d592e081916bf3c084f4d0d110865da10b90da29a69d0066fd08c5908d061cce51aa9371d3b0852ebb1350817b97d2308f500e22a085f848f3408fc61db7c06bb6535ba0a119a7c3109c582d7fa15eb7337fc08d413d4bc2af44bdf950d7b8c648508a2aa3d3c08d28e8839081753b83c08653f533f086997253c08000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f805de02de08c008f203b204ab0336041b04a404980ca80a8f04010daf04a604e4041c050305d305f504fa140603420533017a56c40fab0488048b0492048e04100f0e0d0c0b0a090807060504030201520a000be5031e03ea03e2039903fa036303a303b003f70374068d051104fc061b0418044b046404c304bf045604ba09540669047503a724050520040004020407040504ffffffffffffffffffffffffffffffffffffffffffff00405f07488b03f8780542b5c600000000000000000000000000020000000000000000000000000000160901131434'
2022/09/01 19:20:42 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:42 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:42 SOCKET: read 1 of 1 bytes from socket: b'0d'
2022/09/01 19:20:42 buffering packet ts:1662060042 sn:[redacted]
2022/09/01 19:20:42 SOCKET: closing connection
2022/09/01 19:20:42 buffer info:
2022/09/01 19:20:42   01121002:   4 of 120 (1662060042)
2022/09/01 19:20:42 processing with PrintProcessor
2022/09/01 19:20:42 2 buffered packets sn:[redacted]
2022/09/01 19:20:42 1 calculated packets sn:[redacted]

2022/09/01 19:20:42: Serial: [redacted]
2022/09/01 19:20:42: Voltage:  121.60V
2022/09/01 19:20:42: Ch01:  -8587.919743KWh (-1517W)
2022/09/01 19:20:42: Ch02:  -9996.890361KWh ( -726W)
2022/09/01 19:20:42: Ch03: -10003.603505KWh (-2239W)
2022/09/01 19:20:42: Ch04:  -9961.471888KWh (-2213W)
2022/09/01 19:20:42: Ch05:  -9931.853890KWh (-1123W)
2022/09/01 19:20:42: Ch06:  -9825.328904KWh (-1310W)
2022/09/01 19:20:42: Ch07: -18955.343930KWh (-1051W)
2022/09/01 19:20:42: Ch08:  -9760.378695KWh (-1187W)
2022/09/01 19:20:42: Ch09:  -9827.470656KWh (-1113W)
2022/09/01 19:20:42: Ch10:  -9623.839666KWh (-1250W)
2022/09/01 19:20:42: Ch11: -16372.073415KWh (-3183W)
2022/09/01 19:20:42: Ch12:  -8129.551547KWh (-2791W)
2022/09/01 19:20:42: Ch13:  -9961.705275KWh (-1162W)
2022/09/01 19:20:42: Ch14: -32090.146262KWh (-3328W)
2022/09/01 19:20:42: Ch15:  -9819.863585KWh (-1194W)
2022/09/01 19:20:42: Ch16:  -9794.608592KWh (-1183W)
2022/09/01 19:20:42: Ch17:  -9709.772309KWh (-1186W)
2022/09/01 19:20:42: Ch18:  -9744.220228KWh (-1241W)
2022/09/01 19:20:42: Ch19:  -9789.321982KWh (-1220W)
2022/09/01 19:20:42: Ch20:  -7740.154452KWh (-1424W)
2022/09/01 19:20:42: Ch21: -12798.259608KWh (-1165W)
2022/09/01 19:20:42: Ch22: -10968.043098KWh (-5269W)
2022/09/01 19:20:42: Ch23: -26222.983593KWh ( -885W)
2022/09/01 19:20:42: Ch24: -10719.786376KWh (-1240W)
2022/09/01 19:20:42: Ch25: -50987.956041KWh ( -244W)
2022/09/01 19:20:42: Ch26: -16208.059446KWh (-22139W)
2022/09/01 19:20:42: Ch27: -10166.027127KWh (-3898W)
2022/09/01 19:20:42: Ch28:  -9825.114641KWh (-1136W)
2022/09/01 19:20:42: Ch29:  -9812.496983KWh (-1111W)
2022/09/01 19:20:42: Ch30:  -9827.347562KWh (-1112W)
2022/09/01 19:20:42: Ch31:  -9839.488526KWh (-1116W)
2022/09/01 19:20:42: Ch32:  -9824.676367KWh (-1113W)
2022/09/01 19:20:42: p1:               0
2022/09/01 19:20:42: p2:               0
2022/09/01 19:20:42: p3:               0
2022/09/01 19:20:42: p4:               0
2022/09/01 19:20:42: t1:        0.000000
2022/09/01 19:20:42: t2:        0.000000
2022/09/01 19:20:42: t3:        0.000000
2022/09/01 19:20:42: t4:        0.000000
2022/09/01 19:20:42: t5:        0.000000
2022/09/01 19:20:42: t6:        0.000000
2022/09/01 19:20:42: t7:        0.000000
2022/09/01 19:20:42: t8:        0.000000
2022/09/01 19:20:42 SOCKET: waiting for connection
2022/09/01 19:20:42 waiting for data from device
2022/09/01 19:20:42 reading 1 of 1 packets
2022/09/01 19:20:47 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:47 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:47 SOCKET: read 1 of 1 bytes from socket: b'05'
2022/09/01 19:20:47 SOCKET: read 619 of 619 bytes from socket: b'04c164a4c4320739a619610855898a6208f22c8059084e1d2553086489493c08883860e30f9fb4592e08c42bbf3c089b650d1108431711b90d03d169d006c5e48c590863a0cce51a8b4c1d3b080c00b235080cce7d2308e016e22a08e8998f3408937bdb7c06927b35ba0abdff7c3109bb94d7fa15378b37fc08d319d4bc2a5cfae0950d79da648508f2c13d3c081ea68839086d6ab83c08cf56533f08bfae253c080000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003806290386096909750435052a04b3042d04b304350cb60af703610c11040b04df030f04f803c6040304ed13f2034e040f01d255570f8c04c704cb04d504d004100f0e0d0c0b0a090807060504030201520a000b23045c0332042b0405046604cc030b04be03030448069d05a3039906a903a7038a03a0031604fe03ad0324091c06c40372037b24eb040e042d04310438043504ffffffffffffffffffffffffffffffffffffffffffff00f4ad071ee8035ee00547b5c600000000000000000000000000020000000000000000000000000000160901131439'
2022/09/01 19:20:47 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:47 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:47 SOCKET: read 1 of 1 bytes from socket: b'b2'
2022/09/01 19:20:47 buffering packet ts:1662060047 sn:[redacted]
2022/09/01 19:20:47 SOCKET: closing connection
2022/09/01 19:20:47 buffer info:
2022/09/01 19:20:47   01121002:   5 of 120 (1662060047)
2022/09/01 19:20:47 processing with PrintProcessor
2022/09/01 19:20:47 2 buffered packets sn:[redacted]
2022/09/01 19:20:47 1 calculated packets sn:[redacted]

2022/09/01 19:20:47: Serial: [redacted]
2022/09/01 19:20:47: Voltage:  121.70V
2022/09/01 19:20:47: Ch01:  -8587.921948KWh (-1587W)
2022/09/01 19:20:47: Ch02:  -9996.891465KWh ( -794W)
2022/09/01 19:20:47: Ch03: -10003.606850KWh (-2408W)
2022/09/01 19:20:47: Ch04:  -9961.475196KWh (-2381W)
2022/09/01 19:20:47: Ch05:  -9931.855453KWh (-1125W)
2022/09/01 19:20:47: Ch06:  -9825.330730KWh (-1315W)
2022/09/01 19:20:47: Ch07: -18955.345389KWh (-1050W)
2022/09/01 19:20:47: Ch08:  -9760.380346KWh (-1188W)
2022/09/01 19:20:47: Ch09:  -9827.472197KWh (-1109W)
2022/09/01 19:20:47: Ch10:  -9623.841394KWh (-1244W)
2022/09/01 19:20:47: Ch11: -16372.077743KWh (-3116W)
2022/09/01 19:20:47: Ch12:  -8129.555414KWh (-2784W)
2022/09/01 19:20:47: Ch13:  -9961.706721KWh (-1041W)
2022/09/01 19:20:47: Ch14: -32090.150712KWh (-3203W)
2022/09/01 19:20:47: Ch15:  -9819.865070KWh (-1069W)
2022/09/01 19:20:47: Ch16:  -9794.610066KWh (-1061W)
2022/09/01 19:20:47: Ch17:  -9709.773799KWh (-1073W)
2022/09/01 19:20:47: Ch18:  -9744.221787KWh (-1122W)
2022/09/01 19:20:47: Ch19:  -9789.323513KWh (-1102W)
2022/09/01 19:20:47: Ch20:  -7740.156272KWh (-1310W)
2022/09/01 19:20:47: Ch21: -12798.261161KWh (-1118W)
2022/09/01 19:20:47: Ch22: -10968.050328KWh (-5205W)
2022/09/01 19:20:47: Ch23: -26222.984870KWh ( -919W)
2022/09/01 19:20:47: Ch24: -10719.788033KWh (-1192W)
2022/09/01 19:20:47: Ch25: -50987.956468KWh ( -307W)
2022/09/01 19:20:47: Ch26: -16208.090052KWh (-22036W)
2022/09/01 19:20:47: Ch27: -10166.032674KWh (-3993W)
2022/09/01 19:20:47: Ch28:  -9825.116298KWh (-1193W)
2022/09/01 19:20:47: Ch29:  -9812.498639KWh (-1192W)
2022/09/01 19:20:47: Ch30:  -9827.349221KWh (-1194W)
2022/09/01 19:20:47: Ch31:  -9839.490191KWh (-1198W)
2022/09/01 19:20:47: Ch32:  -9824.678026KWh (-1194W)
2022/09/01 19:20:47: p1:               0
2022/09/01 19:20:47: p2:               0
2022/09/01 19:20:47: p3:               0
2022/09/01 19:20:47: p4:               0
2022/09/01 19:20:47: t1:        0.000000
2022/09/01 19:20:47: t2:        0.000000
2022/09/01 19:20:47: t3:        0.000000
2022/09/01 19:20:47: t4:        0.000000
2022/09/01 19:20:47: t5:        0.000000
2022/09/01 19:20:47: t6:        0.000000
2022/09/01 19:20:47: t7:        0.000000
2022/09/01 19:20:47: t8:        0.000000
2022/09/01 19:20:47 SOCKET: waiting for connection
2022/09/01 19:20:47 waiting for data from device
2022/09/01 19:20:47 reading 1 of 1 packets
2022/09/01 19:20:52 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:52 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:52 SOCKET: read 1 of 1 bytes from socket: b'05'
2022/09/01 19:20:52 SOCKET: read 619 of 619 bytes from socket: b'04c0fcc3c4320751b61961088db98a6208b15c8059084935255308ffa4493c081c4f60e30fc7cd592e089743bf3c08f57f0d1108cc5111b90d5c096ad00638fc8c5908dee1cce51a6a641d3b08d017b2350832e47d2308fe2de22a08b8b08f34084296db7c06fa9135ba0aab657d310929a6d7fa1508a337fc08381fd4bc2a80a9e2950d332765850877d83d3c0870bd883908cb81b83c08406e533f081ac6253c0800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064064703ca09b809c70481057e040405a5042605ee0b280b7204d50c890483049604ca04bd047e0559044214a403a304e1006f56d00e47047504750478047304100f0e0d0c0b0a090807060504030201520a000b3e0472034a0443044004a2040c044b041b045f043506f2050c04ef061a0416041604320499048a04d30349092406e6034803bc24a904ca03f003f203f203f003ffffffffffffffffffffffffffffffffffffffffffff0066e407ba0c04990a064cb5c600000000000000000000000000020000000000000000000000000000160901131502'
2022/09/01 19:20:52 SOCKET: read 1 of 1 bytes from socket: b'ff'
2022/09/01 19:20:52 SOCKET: read 1 of 1 bytes from socket: b'fe'
2022/09/01 19:20:52 SOCKET: read 1 of 1 bytes from socket: b'42'
2022/09/01 19:20:52 buffering packet ts:1662060052 sn:[redacted]
2022/09/01 19:20:52 SOCKET: closing connection
2022/09/01 19:20:52 buffer info:
2022/09/01 19:20:52   01121002:   6 of 120 (1662060052)
2022/09/01 19:20:52 processing with PrintProcessor
2022/09/01 19:20:52 2 buffered packets sn:[redacted]
2022/09/01 19:20:52 1 calculated packets sn:[redacted]

2022/09/01 19:20:52: Serial: [redacted]
2022/09/01 19:20:52: Voltage:  121.60V
2022/09/01 19:20:52: Ch01:  -8587.924194KWh (-1617W)
2022/09/01 19:20:52: Ch02:  -9996.892609KWh ( -824W)
2022/09/01 19:20:52: Ch03: -10003.610279KWh (-2468W)
2022/09/01 19:20:52: Ch04:  -9961.478591KWh (-2444W)
2022/09/01 19:20:52: Ch05:  -9931.857158KWh (-1227W)
2022/09/01 19:20:52: Ch06:  -9825.332693KWh (-1413W)
2022/09/01 19:20:52: Ch07: -18955.346994KWh (-1156W)
2022/09/01 19:20:52: Ch08:  -9760.382135KWh (-1288W)
2022/09/01 19:20:52: Ch09:  -9827.473891KWh (-1219W)
2022/09/01 19:20:52: Ch10:  -9623.843268KWh (-1349W)
2022/09/01 19:20:52: Ch11: -16372.081906KWh (-2997W)
2022/09/01 19:20:52: Ch12:  -8129.559421KWh (-2885W)
2022/09/01 19:20:52: Ch13:  -9961.708389KWh (-1200W)
2022/09/01 19:20:52: Ch14: -32090.155368KWh (-3352W)
2022/09/01 19:20:52: Ch15:  -9819.866767KWh (-1222W)
2022/09/01 19:20:52: Ch16:  -9794.611756KWh (-1216W)
2022/09/01 19:20:52: Ch17:  -9709.775374KWh (-1134W)
2022/09/01 19:20:52: Ch18:  -9744.223431KWh (-1183W)
2022/09/01 19:20:52: Ch19:  -9789.325136KWh (-1168W)
2022/09/01 19:20:52: Ch20:  -7740.158169KWh (-1366W)
2022/09/01 19:20:52: Ch21: -12798.262754KWh (-1147W)
2022/09/01 19:20:52: Ch22: -10968.057576KWh (-5218W)
2022/09/01 19:20:52: Ch23: -26222.986109KWh ( -892W)
2022/09/01 19:20:52: Ch24: -10719.789727KWh (-1219W)
2022/09/01 19:20:52: Ch25: -50987.956851KWh ( -276W)
2022/09/01 19:20:52: Ch26: -16208.120711KWh (-22074W)
2022/09/01 19:20:52: Ch27: -10166.038130KWh (-3928W)
2022/09/01 19:20:52: Ch28:  -9825.117900KWh (-1153W)
2022/09/01 19:20:52: Ch29:  -9812.500298KWh (-1194W)
2022/09/01 19:20:52: Ch30:  -9827.350883KWh (-1196W)
2022/09/01 19:20:52: Ch31:  -9839.491858KWh (-1200W)
2022/09/01 19:20:52: Ch32:  -9824.679687KWh (-1195W)
2022/09/01 19:20:52: p1:               0
2022/09/01 19:20:52: p2:               0
2022/09/01 19:20:52: p3:               0
2022/09/01 19:20:52: p4:               0
2022/09/01 19:20:52: t1:        0.000000
2022/09/01 19:20:52: t2:        0.000000
2022/09/01 19:20:52: t3:        0.000000
2022/09/01 19:20:52: t4:        0.000000
2022/09/01 19:20:52: t5:        0.000000
2022/09/01 19:20:52: t6:        0.000000
2022/09/01 19:20:52: t7:        0.000000
2022/09/01 19:20:52: t8:        0.000000
2022/09/01 19:20:52 SOCKET: waiting for connection
2022/09/01 19:20:52 waiting for data from device
2022/09/01 19:20:52 reading 1 of 1 packets
^C2022/09/01 19:20:54 SOCKET: closing connection
2022/09/01 19:20:54 cleanup PrintProcessor
2022/09/01 19:20:54 cleanup SocketServerCollector
2022/09/01 19:20:54 SOCKET: closing socket

ben
Site Admin
Posts: 4266
Joined: Fri Jun 04, 2010 9:39 am

Re: packets arriving at Home Assistant, btmon can't see them

Post by ben » Fri Sep 02, 2022 9:35 am

dvl wrote:
Thu Sep 01, 2022 2:43 pm
ben wrote:
Thu Sep 01, 2022 11:35 am
Make sure you don't have a Micro hooked up like a Split-CT. That will cause bleed over to other channels due to overloading the GEM. Won't cause any damage.
I have not opened the panel to verify the only two splits I have. I thought they were 1 and 2.

To test this, I changed the two channels set to a split to Micro.The sum of ch1 and ch2 now looks more like what I think my total consumption should be. But none of the channels are zero yet.

For example, I know the dryer channel should be zero because the dryer is not plugged in. NOTE: channels without a connected CT are showing loads. Channels 28-32 do not have a connected CT.

Could this be me using Micro-80 on 20A and 40A circuits?

From my order I see: :"Package : Package A, CT Package : Package H" And then 14x Micro-80 Donut Style CT.

Thank you.
Given all channels are showing 1000W, you definitely have a Micro-CT hooked into the GEM like a Split-CT.

- Take the GEM case cover off, check every channel.
- Micro-CTs should only be in the middle two ports (2,3) of any channel. If any Micro-CT is hooked up to Ports 1,2 or 3,4, it's causing the overloading.

Ports 2,3 have a burden resistor across itself. The Micro-CTs aren't big enough to have an internal resistor. So if you hook it up between 1,2 or 3,4 the CT is left unburdened and is putting a high signal into the GEM.
Ben
Brultech Research Inc.
E: ben(at)brultech.com
dvl
Posts: 15
Joined: Wed Jan 19, 2022 1:22 pm

Re: packets arriving at Home Assistant, btmon can't see them

Post by dvl » Tue Sep 06, 2022 3:40 pm

ben wrote:
Fri Sep 02, 2022 9:35 am
Given all channels are showing 1000W, you definitely have a Micro-CT hooked into the GEM like a Split-CT.

- Take the GEM case cover off, check every channel.
- Micro-CTs should only be in the middle two ports (2,3) of any channel. If any Micro-CT is hooked up to Ports 1,2 or 3,4, it's causing the overloading.

Ports 2,3 have a burden resistor across itself. The Micro-CTs aren't big enough to have an internal resistor. So if you hook it up between 1,2 or 3,4 the CT is left unburdened and is putting a high signal into the GEM.
Nearly all of them were wrong... My electrician hooked these up but I was advising him. My fault.

Now I have some values which make sense, for example, computer rack - 937.6 W - matches what the UPS says: 965 W

Thank you.
ben
Site Admin
Posts: 4266
Joined: Fri Jun 04, 2010 9:39 am

Re: packets arriving at Home Assistant, btmon can't see them

Post by ben » Wed Sep 07, 2022 8:58 am

dvl wrote:
Tue Sep 06, 2022 3:40 pm
ben wrote:
Fri Sep 02, 2022 9:35 am
Given all channels are showing 1000W, you definitely have a Micro-CT hooked into the GEM like a Split-CT.

- Take the GEM case cover off, check every channel.
- Micro-CTs should only be in the middle two ports (2,3) of any channel. If any Micro-CT is hooked up to Ports 1,2 or 3,4, it's causing the overloading.

Ports 2,3 have a burden resistor across itself. The Micro-CTs aren't big enough to have an internal resistor. So if you hook it up between 1,2 or 3,4 the CT is left unburdened and is putting a high signal into the GEM.
Nearly all of them were wrong... My electrician hooked these up but I was advising him. My fault.

Now I have some values which make sense, for example, computer rack - 937.6 W - matches what the UPS says: 965 W

Thank you.
That's a bit on the higher end of error that we would expect. Check to see if any other channels look off by the same amount (~3%). If you have a purely resistive load like a hair dryer you can try plugging that into the UPS and turning it on. It should increase the channel by whatever it's rated for.
Ben
Brultech Research Inc.
E: ben(at)brultech.com
Post Reply