Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 536 Bytes

Wireshark-decoding.md

File metadata and controls

24 lines (16 loc) · 536 Bytes

Decoding data in Wireshark

This repo provides lua scripts to help decode BLE communication in Wireshark.

Installing scripts

mkdir -p ~/.config/wireshark/plugins
cp *.lua ~/.config/wireshark/plugins/

Then restart Wireshark

Monitoring requests

To monitor requests enter this in the filter

btatt.opcode == 0x52

That will display all requests from the application to the mower. You should see a field called Husqvarna AutoMower Protocol. That should help decode packets and debug issues/new requests.