This is this an unofficial Node.js API for Big Ass Fans - fans with SenseME.
In particular - all development was done on a Haiku fan with SenseME.
- Homekit control!
- Controlling your fan with keyboard shortcuts
- Controlling it via any way you can imagine, just read on
Two major components - the FanMaster and the BigAssFan.
- Listens for new fans
- Allows sending messages to all fans
- Routes all incoming messages to the appropriate child fans
- Retries fan searching if fans detected < fans specified in constructor
- Will not search for any fans if 0 is passed into constructor
Every fan needs a FanMaster
! Because that's where the messages come from!
- Initialize with:
new bigAssApi.FanMaster(numberOfExpectedFans)
- Will continue to query for new fans until numberOfExpectedFans is met - default is 1
onFanFullyUpdated
- callback you can override - called with every new fully initialized fanonFanConnection
- callback you can override - called with every new fan connection with the fan connected- Will get called before onFanFullyUpdated - but not guaranteed to have all fields updated (some will be
undefined
)
- Will get called before onFanFullyUpdated - but not guaranteed to have all fields updated (some will be
rescanForFans
- rescans for all fansrescanUntilAllFans
- continues rescanning untilfanMaster.numberOfExpectedFans >= fansFound
allFans
- dictionary containing all of the fans - keyed off of the user given namepollingIntervalForFans
- polling interval ifnumberOfExpectedFans < fansFound
- Allows sending and recieving messages from the fan
- Registering for property updates
- Sending update events to a given property
- Implementing retries on setting properties
- Interface to update all properties
npm install BigAssFansAPI
var bigAssApi = require("BigAssFansAPI");
var myMaster = new bigAssApi.FanMaster(1); // Expect only one fan in my setup
myMaster.onFanFullyUpdated = function(myBigAss){
// Will automatically update / retry setting for this connected fan
myBigAss.light.brightness = 1;
myBigAss.fan.speed = 1;
console.log("Initial Big Ass Light value: " + myBigAss.light.brightness);
// Register for an update callback (say if the phone updates the property)
myBigAss.light.registerUpdateCallback("brightness", function (newValue) {
console.log("Updated brightness value: " + myBigAss.light.brightness); // or newValue
})
myBigAss.light.update("brightness"); // Forces an update to brightness
};
To see more examples, navigate to the examples directory!
- Property get retrieves the last known value
- To force a server query use the update function
- All properties can be set
- This will send a server request - getting the property will not be updated until the device confirms it has been updated
- Implements retries automatically (
maxRetries
,waitTimeOnRetry
can be set as fan properties)
- Listening for update events
- If phone or other system updates the fan - or just when our "set" is succesful
myBigAss.light.registerUpdateCallback("brightness", function (newValue) {});
- can all be unregistered with
unregisterUpdateCallback(id)
whereid
is the return ofregisterUpdateCallback()
- Forcing an update
- For property
light.brightness
on BigAssFan:myBigAss
callmyBigAss.light.update('brightness', optionalCallback)
; - You can also use
myBigAss.update('light', optionalCallback);
ormyBigAss.updateAll(optionalCallback);
- For property
- Setting with a callback - with
myBigAss.light.setProperty('brightness', callback)
you can know when your set succeeded (or failed)
fan.isOn
- bool valuefan.speed
fan.min
fan.max
fan.auto
fan.whoosh
fan.isSpinningForwards
- bool valuelight.brightness
light.min
light.max
light.auto
light.exists
- readonly - bool valuelight.isOccupied
- readonly - bool valuelight.minTimeout
light.maxTimeout
light.timeout
learn.isOn
- bool valuelearn.minSpeed
learn.maxSpeed
learn.zeroTemp
sleep.isOn
- bool valuesleep.smartIdealTemp
sleep.minSpeed
sleep.maxSpeed
device.beeper
- bool valuedevice.indicators
- bool valuedevice.winterMode
- bool valuedevice.height
device.token
- readonly- No idea what this token is for.
device.dhcp
- bool valuedevice.fw
- readonlydevice.broadcastSSID
- readonlydevice.isAccessPoint
- bool value
Through the magic of Wireshark! And the time granted by a weekend!
Pretty sure all the API's I saw when sniffing are now in here. But that'll probably change as BigAssFans adds more features.
I am in no way am associated with Big Ass Fans. Also this can break at any time if they change their API. I'm also in no way am responsible for you damaging your fan by using this API.
(However - I would be surprised if you did)
- Hopefully not breaking you!
- Stuff that I have in here shouldn't be changing that much - but if it does - sorry!
- Checking that setters have only valid input parameters
- I hear unit tests are a good thing >.>
- Add support for changing wireless access point used / the whole pairing process flow.
- Register update callback might be changed to only call you on value update - not on 'fan-says-there-was-an-update-update'