CC2 wont connect #323
-
|
When connecting to my CC2 it finds the printer but wont connect. Any ideas?? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
|
Hi, Without debug logs i cant really help much https://github.com/danielcherubini/elegoo-homeassistant/wiki/Enabling-Debug-Logging |
Beta Was this translation helpful? Give feedback.
-
|
2026-02-07 19:57:42.918 WARNING (MainThread) [custom_components.elegoo_printer] Registration timeout |
Beta Was this translation helpful? Give feedback.
-
Issue Identified and FixedThe connection problem you're experiencing with your CC2 printer has been identified and fixed! The ProblemWhen you see the printer but can't connect, it's typically an authentication issue. The integration was using a hardcoded fallback password ("123456") when no access code was provided during setup. However, many CC2 printers ship with different defaults:
When the integration tried to authenticate with the wrong password, the printer would silently reject it, causing the connection to fail. There was also a bug where even if the integration discovered the correct password was an empty string, it wouldn't save it to your configuration due to Python's falsy checks. The FixA comprehensive fix has been implemented in PR #330:
Next StepsThis fix should land today. Once it's released:
Check back soon for the release, and please let us know if this resolves your issue! |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for responding so quickly. I can now connect but only if the printer is in LAN only mode. Is this something you could look at when you have some time? |
Beta Was this translation helpful? Give feedback.

Issue Identified and Fixed
The connection problem you're experiencing with your CC2 printer has been identified and fixed!
The Problem
When you see the printer but can't connect, it's typically an authentication issue. The integration was using a hardcoded fallback password ("123456") when no access code was provided during setup. However, many CC2 printers ship with different defaults:
When the integration tried to authenticate with the wrong password, the printer would silently reject it, causing the connection to fail.
There was also a bug where even if the integra…