Add support for Deebot N20 Combo (eup9ax)#1586
Open
Johan854 wants to merge 1 commit into
Open
Conversation
## 🧹 Device information - Device name: DEEBOT N20 COMBO - Device class: eup9ax - Model: N20_COMBO_INT - Country: FR - UILogicId: y2combo_ww_h_y2h5 --- ## ❌ Problem The device is detected but not supported: Device class "eup9ax" not recognized Result: - devices_.mqtt = [] - device appears in `not_supported` - commands cannot be executed --- ## 🔧 Working workaround (tested and confirmed) I managed to make the device fully working by cloning an existing hardware file. ### Steps: 1. Go to: site-packages/deebot_client/hardware 2. Copy an existing hardware file: gwtll7.py → eup9ax.py 3. Restart the script --- ## ✅ Result after workaround - Device is correctly detected ✅ - MQTT configuration is populated ✅ - Device no longer appears in `not_supported` ✅ Example: Capabilities found for eup9ax Devices(mqtt=[DeviceInfo(...)], xmpp=[], not_supported=[]) --- ## ✅ Working features (fully tested) After applying the workaround, the following features work correctly: - ✅ Clean command (start cleaning) - ✅ Battery status - ✅ Position updates - ✅ Stats (area, time) - ✅ Charge / dock state - ✅ Network info - ✅ Device state (cleaning, docked) Commands return success: cmdName: clean → code: 0 (OK) --- ##⚠️ Known limitations - MQTT unstable on Windows (aiomqtt limitation) - Requires: asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) --- ## 💡 Proposed solution (simple) The device appears fully compatible with an existing model. 👉 Suggested fix: - Add `eup9ax` as an alias of `gwtll7` - OR clone `gwtll7.py` into `eup9ax.py` This alone is sufficient to make the device fully functional. --- ## 🤝 Why this should work - Same command set works without modification - Same JSON protocol - No additional capability adjustments required - Hardware behavior matches existing supported model --- ## 🙏 Additional notes - Happy to provide full logs if needed - Happy to test a patch or PR - Device is stable once recognized Thanks for the project 👍
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🧹 Device information
❌ Problem
The device is detected but not supported:
Device class "eup9ax" not recognized
Result:
not_supported🔧 Working workaround (tested and confirmed)
I managed to make the device fully working by cloning an existing hardware file.
Steps:
Go to: site-packages/deebot_client/hardware
Copy an existing hardware file: gwtll7.py → eup9ax.py
Restart the script
✅ Result after workaround
not_supported✅Example:
Capabilities found for eup9ax
Devices(mqtt=[DeviceInfo(...)], xmpp=[], not_supported=[])
✅ Working features (fully tested)
After applying the workaround, the following features work correctly:
Commands return success:
cmdName: clean → code: 0 (OK)
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
💡 Proposed solution (simple)
The device appears fully compatible with an existing model.
👉 Suggested fix:
eup9axas an alias ofgwtll7gwtll7.pyintoeup9ax.pyThis alone is sufficient to make the device fully functional.
🤝 Why this should work
🙏 Additional notes
Thanks for the project 👍