Thankfully I don't use any of their products, but this really pisses me off. They claim that this open source project "causes significant economic harm to their company"
This is ridiculous. It is truly ridiculous. How can something that enables the user to efficiently control their AC cause "significant economic harm"???
Consider forking the repository or mirroring it to another platform like GitLab, Codeberg or your self-hosted Git server, so the project can continue to exist and someone can maybe fork it and maintain it.
If you don't know about Home Assistant, check it out. It's an amazing piece of open-source software, that you can run at home on your own server and use it to control your smart home devices. That way, you don't need to connect them to the manufacturer's (probably insecure) cloud. It gives you sovereignty over your smart home instead of some proprietary vendor-locked garbage. Check out their website and the Lemmy community: !homeassistant@lemmy.world
He makes awesome videos in general, consider subscribing.
As Rossmann said, don't ever buy anything from such a shitty company that doesn't respect their customers. This move by Haier is nothing other than a slap in the face for everyone, who just wants to comfortably control the product they paid for. This company is actively hostile towards their paying customers. Fuck these bastards!
I went with Daikin 'cause they had local control.... Except that they changed it in the meantime, and I had 2 different AC splits connected to the pump, one of them is older and still has local control, while the other is newer and doesn't. Fuck all of them.
Forked, and mirrored to my Forgejo server. As someone else pointed out on a different community, this is a great example of the Barbra Streisand effect in action.
People like me, without Haier appliances, are now aware of this fuckwittery, and have actively taken steps to preserve the code, before it gets taken down.
Had a nice TV from that company. It was really long ago, though, and the terribly bright blue indicator of it being on I didn't like, especially when using as a PC monitor.
Translation: our legal team has to justify their employment, thus we're threatening non-profit open source projects that can't fight back and pose no harm whatsoever to the company's financials, market position, customers, or any other stakeholder.
It'd be awesome if the maintainers could get a pro bono advice / representation here to make a proper response. They're volunteering their free time improving an extensive list of crappy products of a brand and this is what they get back? Disgusting move from Haier.
Bit of a tangent, but I hear Haier's legal department can be reached at cybergovernance@haier-europe.com, if anyone has any questions about the legal grounds they're claiming, I'm sure they'd be happy to elaborate - they clearly have plenty of free time on their hands.
Seems like I dodged a bullet by recently deciding for another company. Definitely on my permanent do-not-buy list now, thanks for letting us know that you do not want any customers, Haier 😑
Not the person you asked, but i have a mitsubishi electric heatpump, which i have hooked up to homeassistant via an esphome library. It has a header on the controller board that you can connect to.
Normally the header is for their $200 controller and app, i spent $10 on the parts.
I have a Lennox multistage system with a heat pump, and furnace for when it gets too cold. The best way to run those (according to the installer) is at a low level all the time. So it doesn't benefit much from things like location tracking to turn the system up or down while we're out. Especially since I work from home.
What it does do is make graphs for tracking how it runs the heat pump and furnace each day.
The FSF actively encourages people to do that, and yes their legal team is there. Not sure whether it's "powerful" but surely better than a single developer
I always thought about why don't FOSS projects that are at risk of getting sued by big corp like (NewPipe, Popcorn Time, streamio, tachiyomi ....) embrace the dark web or git over torrent via VPN, so their projects don't get threatened with take downs. z-library ended having to move to the dark web after all.
Anna’s Archive is probably the best source for books. I use it all the time, actually, I even use it right now. It's also great for students who need textbooks. Fuck Pearson and those other scammers!
It's not like a judge said it's illegal... what happened is that a huge multinational company sent a menacing letter to a developer regarding their hobby project, and the developer —understandably— decided to comply.
Yeah, even though the claim is 1000% horseshit, it’s not like some small time python dad has the means to defend against a giant multinational in court.
The developer has not yet fully complied - the repo is still up, they have legal insurance and are in discussion with lawyers, and they have responded requesting clarification on the specifics of their alleged "violation".
In the mean time, I think many people have reached out to Haier to express their displeasure. On an unrelated note, the original menacing letter came from cybergovernance@haier-europe.com in case anyone was curious.
From what I read, this project does help integrate with HA to avoid using the Haier app, but still uses Haier's cloud. Can anyone confirm if this was true?
Based on the documentation on the GitHub, it looks like it does use Haier's cloud. Which, doesn't make Haier's actions any less shitty, but I can understand a company not wanting a bunch of users using their undocumented API, especially if there's potential to have automations hitting it more frequently than their own app does (not that I have any reason to believe this project was actually being inefficient with API calls).
EDIT: sorry, I read it wrong, I thought the reply says the addon "doesn't" use the remote API.
I digged a bit on the code, and every command indeed go through the cloud. So even if you use this addon, Haire can still collect a fair bit of data about you, since there is no way to communicate locally and directly to the AC.
But the addon only sends the minimum amount of data to achieve functionality, so definitely not as much data as using Haire's app.
Can you link to where the documentation that specify they don't use API?
Because I am looking at pyhOn (dependency of hon, and also being taken down), it seems like when executing a command, they do contact the cloud. Specefically
url: str = f"{const.API_URL}/commands/v1/send"
async with self._hon.post(url, json=data) as response:
...