Answers to the above questions (to the best of my knowledge!):
When I do a factory reset can I expect that the fan will unpair from my wifi network and return to “access point” mode (announcing a name like ModernFormsFan_xxxxxx)? ==> Yes
Am I better off using the vendor app “properly” (create a login, fully use the phone app) or can I get away with doing equivalent things via curl POSTs? It seems the main need is to join the fan to my home wifi and from what I’ve seen there is a curl command (described here: Modern Forms fan IP control - cmb) that would accomplish this task.
Once the fan is joined to my wifi network how do I update the fan’s firmware? My guess is with the phone app – but does this then require a modernforms account? ==> I installed on app first (so I could update firmware, etc.) then run though HA
Does anyone know if the manual “join wifi network” curl command still works with recent firmware versions? My up-to-date fans are running version 02.00.0026. ==> I have not used this approach so I do not know
I can’t find a better place to ask so I’m going to ask here and maybe someone will help me out.
Is the Modern Forms official integration fully local? Is it using WiFi for local? Or is it cloud based?
If fully local, can I use it just as another device? As in set up timers and other automation based on the entities it finds? Sorry, still very new at HA.
Is there a delay between using HA and the fan receiving the command? I saw that there was a 60 second delay, I don’t want that.
I don’t believe it runs local, as the one fan I have with this integration loses cloud connection and then loses connection to Home Assistant at the same time. It tends to happen every couple months and just has to be powered off and on at the switch.
Reaction time to Home Assistant commands are fast for me, one second or so. It also works in automations.
That’s good to know. I guess when my fan loses cloud connection it’s losing signal completely. A bit irritating since it’s 20 feet from my router, but it’s easy enough to kill the power and turn it back on.
Just tested the Modern Forms Integration by disconnecting router from the internet, and I still have full local control over wi-fi. My response time when sending on/off commands is less than one second.
I like that the fan doesn’t beep when changing speeds via HA as it does when using the vendors remote. I have an automation in Node Red that sets the fan speed as soon as it’s turned on based on the temperature range of other sensors in HA. My fan has 6 speeds that you set as a percentage (16,33,50,66,83,100). The fan entity does have an option to reverse the rotation.
The other entities automatically created are for “Adaptive Learning” and “Away Mode”. There’s also 2 additional entities that are either “Unknown” or “Unavailable”, which are “Fan Sleep Time” and “Fan Sleep Timer Active”.
I don’t see any way to update the firmware in HA, so that would need to be done initially via their cloud app. For the cloud app you can either create an account or use Google, Apple or Facebook Authentication.
I really like these fans and would purchase more as the need arises.
If you read back through this thread, you’ll find out that you are not alone with the MFFs locking up after a period of time. It appears as if it’s a wide-spread issue.
It has gotten better with my fans over the last 9 or so months, which I attribute to the firmware updates, as well as apparently very well written HA core integration.
When I first got the fan the remote and HA controls worked fine. But something happened now I can’t use the physical remote any more. It seems like WAC wants me to power cycle the fan to repair the remote.
But I don’t really want to turn the circuit off outside to do that. Anyone know another way?
Unpairing it by holding the light + and the fan + then repairing it by holding the light button and the fan button does not work.
Disconnecting several times. The last one kept disconnected for several hours and required powering off the fan.
It has nothing to do with the integration. It simply loses wifi connection. Signal is not that strong but what can you expect when the fan wifi is in a metal enclosure?
I own two of WAC’s smart fans. I specifically purchased these for their smart capabilities as I read they work well with Home Assistant via the Modern Forms integration. After installing them, I encountered an issue where the fan connects and everything works fine for about a week, and then stops responding and appears offline. The fan is still connected to my WiFi (I can see it on my router) but it won’t respond to pings or commands to operate the fan. I had to shut off the power to the fan for a few seconds and turn it back on to force it to reboot, and then the fan will come back online and will work perfectly fine for about another week. Both of my fans did this same thing at random times, so I know it’s a firmware issue and not something with my network. Working with support was tedious. It took 8 months and 73 emails but finally the issue has been resolved by way of them releasing a firmware update around March 2024. The fans have now been stable and I am pleased with them again. If anyone is still having issues with them, make sure your firmware on the fan is up to date.
I can’t believe I finely found the answer to solve this issue where my MF fans drop wifi and needi to be rebooted daily…
I got a instant dopamine release when I plugged this code into my YAML file and ran the RESTful command and saw my fans disconnect & reconnect to the network.
Thank you guys so much… You have no idea how many hundreds of google searches I’ve done regarding this issue.
I have no idea what update the guy above me got but my MF fans have been disconnecting for years and no updates have come close to fixing it. Currently I’m on Firmware Version: 20.00.0040
Ah! This cleared up my code. However, I still am having problems putting this into a restful toggle switch to turn Breeze Mode on and off. Do you have any suggestions for this? Thanks!
OK, so I have completed a toggle that turns “Wind Mode” “On” and “Off” for the Modern Forms fan. It ain’t pretty but it works. Several site-specific changes have to be made:
You have to create specific Yaml code for each fan in your home because I hard-coded each fan’s IP address.
The card component I use is custom:button-card, so if you do not have that installed (hacs installed) you will have to come up with the switch or button component on your own.
This change is cosmetic:
3) For a more seamless button appearance, I use card_mod. This is NOT needed for functionality.
Here is the code to add to your Yaml code in the location that makes the most sense for you. For clarity, I will pretend it is in configuration.yaml. This version looks for the fan at IP: 192.168.20.11. Change this to reflect the respective IP for your fan. Also change the switch name to reflect your environment. The command_line switch looks like this:
command_line:
- switch:
name: "windmode_paul_office"
command_on: curl -d '{"wind":true}' -X POST http://192.168.20.11/mf
command_off: curl -d '{"wind":false}' -X POST http://192.168.20.11/mf
Next add the button using a custom:button-card in a vertical grid with other components. For my use, I hard-coded colors so “Off” would look greyed out and “On” (wind mode) would be light blue. Here is the entity information: