Go to file
Andre Basche 98ea037774 Add wm_13307 #21 2024-01-11 23:42:50 +01:00
assets Add readme 2023-06-25 17:49:55 +02:00
test_data Add wm_13307 #21 2024-01-11 23:42:50 +01:00
.gitignore Fix json decoding 2023-06-28 19:20:42 +02:00
LICENSE Create LICENSE 2023-06-25 18:00:51 +02:00
README.md Add readme 2023-06-25 17:49:55 +02:00

README.md

hon-test-data Collection

Collection of hOn appliance data for development and testing of Andre0512/pyhOn and Andre0512/hon.

Contribute

Please add your appliances data to this repository. This helps us to develop new features and not to break compatibility in newer versions.
The data is automatic anonymized (like serial number, mac address, specific dates, given names and any user specific entry).

Home Assistant

  1. Make sure you installed the hon integration
  2. Navigate to Settings -> Device & Services -> Haier hOn -> your device and press the Create Data Archive button. Then open notifications to download the data archive.
    Press Create Data Archive button Download data archive
  3. Create a GitHub Issue to this repository and add this zip file. Alternatively create a pull request with unzipped data.

pyhOn

  1. Fork this repository
  2. Clone your forked repository
    $ git clone https://github.com/YOUR-USERNAME/hon-test-data.git
    $ cd hon-test-data/
    
  3. Make sure you installed pyhOn
    $ pip install pyhOn
    
  4. Create a export of your data with pyhOn
    Make sure you use the anonymous paramater to protect your personal data!
    $ pyhOn export --anonymous test_data/
    User for hOn account: your.hon.login@gmail.com
    Password for hOn account: 
    Created test_data/wm_1569/commands.json
    Created test_data/wm_1569/attributes.json
    Created test_data/wm_1569/command_history.json
    Created test_data/wm_1569/statistics.json
    Created test_data/wm_1569/maintenance.json
    Created test_data/wm_1569/appliance_data.json
    
  5. Commit and push your data
    $ git add .
    $ git commit -m "Add appliance data"
    $ git push
    
  6. Create a pull-request to this repository