This Adapter enables you to manage the supported Wiser by Feller system devices via a WebSocket connection.
All product and company names or logos are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them or any associated subsidiaries! This personal project is maintained in spare time and has no business goal. Wiser by Feller is a trademark of Feller AG, CH-8810 Horgen.
- node.js >= v18 is required
- js-controller >= v5.0.19 is required
- admin >= v6.3.5 is required
- Installed Wiser by Feller devices are required. More information can be found here: Wiser by Feller.
- Wiser by Feller Druckschalter 1-Kanal 3401...
- Wiser by Feller Druckschalter 2-Kanal 3402...
- Wiser by Feller Storenschalter 1-Kanal 3404...
- Wiser by Feller Storenschalter 2-Kabal 3405...
- Wiser by Feller LED-Universaldimmer 1-Kanal 3406...
- Wiser by Feller LED-Universaldimmer 2-Kanal 3407...
- Wiser by Feller DALI-Dimmer 1-Kanal 3411...
Еven without the mobile app, Wiser by Feller WLAN device can be set and controlled through a browser and WiFi connection of a mobile phone, tablet or PC (please make sure, that the device is not connetced to the cloud service -> see reset guideline in the manual of the device).
Installation procedure:
- Install Wiser by Feller WLAN device
- After first connection to power, Wiser by Feller WLAN device has created an own WiFi network, with name (SSID) such as
wiser-000xxxxx
. Connect to it with your phone, tablet or PC and enter passwort, provided together with the device (sticker). - Type
http://192.168.0.1
in your browser - Fill in
New Registration
and press the button on the device to continue - Log in
- Go to
settings
->Network settings
->Add new WLAN
- Enter your credentials and press button
Add WLAN
- Press button
Reboot Now!
- Log out and discconnect your phone, tablet or PC from the Wiser by Feller WLAN device
- Get IP-Address of Wiser by Feller WLAN device in your router
- Enter
IP-Address
of Wiser by Feller WLAN device in settings of ioBroker.wiserbyfeller adapter instanceGateway-IP
- Enter
username
of Wiser by Feller WLAN device in settings of ioBroker.wiserbyfeller adapter instanceusername
- Click
save
button - Click
Get authentification token
button and follow the shown procedure - Click
close
button
Installation procedure:
- Install Wiser by Feller WLAN device and connect it via the guideline from Wiser by Feller via the normal installation guide.
- Get IP-Address of Wiser by Feller WLAN device in your router
- Enter
IP-Address
of Wiser by Feller WLAN device in settings of ioBroker.wiserbyfeller adapter instanceGateway-IP
- Enter
username
of Wiser by Feller WLAN device in settings of ioBroker.wiserbyfeller adapter instanceusername
- Click
save
button - Click
Get authentification token
button and follow the shown procedure - Click
close
button
To turn on or off a load set the attribute BRI
(brightness) to the following values:
- Turn off set the
.ACTIONS.BRI
attribute tooff
- Turn on set the
.ACTIONS.BRI
attribute toon
On a motor e.g. shutter/blind you can set the target level between 0% and 100% (0
- 10000
) and a tilt value.
- To set the shutter in open position set the
.ACTIONS.LEVEL
attribute to0
- To set the shutter in close position set the
.ACTIONS.LEVEL
attribute to10000
- To control the shutter set the
.ACTIONS.LEVEL
attribute between1
and10000
(e.g. set.ACTIONS.LEVEL
to5000
, means set the shutter/blind to position 50%) - To control slats of a shutter (number of tilt) set the
.ACTIONS.TILT
attribute to a value0
-9
. Finally it's the motor running time, because we don't know the slat position in degrees. - To control the position and the tilt attribute together, set the
.ACTIONS.leveltilt.SET
attribute to valuetrue
. The shutter/blind will move to the position of the two values.ACTIONS.leveltilt.level
and.ACTIONS.leveltilt.tilt
On a dimmable light you can set the target brightness between 0% and 100% (0
- 10000
).
- Turn off set the
.ACTIONS.BRI
attribute to0
- To dim set the
.ACTIONS.BRI
attribute between1
and10000
(e.g. set.ACTIONS.BRI
to5000
, means 50% of brightness)
On a dimmable light you can set the target brightness between 0% and 100% (0
- 10000
).
- Turn off set the
.ACTIONS.BRI
attribute to0
- To dim set the
.ACTIONS.BRI
attribute between1
and10000
(e.g. set.ACTIONS.BRI
to5000
, means 50% of brightness)
On a dimmable light you can set the target brightness between 0% and 100% (0
- 10000
).
- Turn off set the
.ACTIONS.BRI
attribute to0
- To dim set the
.ACTIONS.BRI
attribute between1
and10000
(e.g. set.ACTIONS.BRI
to5000
, means 50% of brightness) - To change the color set the
.ACTIONS.CT
attribute between1000
and20000
On a dimmable light you can set the target brightness between 0% and 100% (0
- 10000
).
- Turn off set the
.ACTIONS.BRI
attribute to0
- To dim set the
.ACTIONS.BRI
attribute between1
and10000
(e.g. set.ACTIONS.BRI
to5000
, means 50% of brightness) - To change the color set the
.ACTIONS.RED
,.ACTIONS.GREEN
,.ACTIONS.BLUE
and/or.ACTIONS.WHITE
attribute between0
and255
Create a job on the μGateway and connect them to a smartbuttons with true
respectively false
or toggle value:
-
Open
[IP-Adress of Wiser by Feller WLAN device]/debug/apiui.html
-
Click Authorize button
-
Enter value
SecretAuth (http, Bearer)
-
Click
Authorize
button -
Click
Close
button -
Open
scripts
tab on your μGateway (url:[IP-Adress of Wiser by Feller WLAN device]/scripts.html
), click buttonCreate File
-
Enter a program name (f. ex.
smartbutton_1.py
), click buttonSave
-
Open programm by clicking on the pencil right in the above created program
-
First Option: Add the following code if you want to get
true
andfalse
you need two buttonsFirst Button:
import websockets async def onButtonEvent(*argv): await websockets.Connection.push_event('/api', {'smb': {'id': argv[2], 'value': True}})
Second Button:
import websockets async def onButtonEvent(*argv): await websockets.Connection.push_event('/api', {'smb': {'id': argv[2], 'value': False}})
Second Option: Add the following code if you want to toggle the value
true -> false -> true ...
import websockets value = True async def onButtonEvent(*argv): global value await websockets.Connection.push_event('/api', {'smb': {'id': argv[2], 'value': value}}) value = False if value else True
-
Click on button
✓
(save) -
Open
[IP-Adress of Wiser by Feller WLAN device]/debug/apiui.html
-
Go to
POST /api/smartbuttons/program
, clickTry it out
button -
Enter
{"on": true, "timeout": 60, "button_type": "scene", "owner": "user"}
, clickExecute
button -
Go to
GET api/smartbutton/notify
, clickTry it out
button -
Click
Execute
button -
Press a blinking Scene Button on your Wiser by Feller Device
-
Write down the
button id
-
Go to
POST api/jobs
, clickTry it out
button -
Enter
{"scripts": ["smartbutton_1.py"]}
(smartbutton_1.py
must match the above choosen program name), clickExecute
button -
Write down the
job id
-
Go to
PATCH /api/smartbuttons/{id}
, clickTry it out
button -
Enter the
button id
inid
field -
Enter following code in the request body:
{"job": 102, "name": "Smartbutton_1"}
(job must match thejob id
from above,name
can be choosen), clickExecute
button
-
For issues please use GitHub issues -> "Bug report" and fill in the form.
Set the adapter to debug log mode (Instances -> Expert mode -> Column Log level). Get the logfile from disk (subdirectory "log" in ioBroker installation directory and not from Admin because Admin cuts the lines). Check that there are no personal information before you publish your log.
-
For feature requests Please use GitHub issues -> "Feature request" and fill in the form.
- (ice987987) BREAKING: js-controller >= v5.0.19, admin >= v6.3.5 and node.js >= v18 is required
- (ice987987) dependencies updated
- (ice987987) section "disclaimer" in readme added
- (ice987987) ukrainian language added
- (ice987987) support for DALI-Dimmer added
- (ice987987) additional device info added (folder:
.info.device.[...]
) - (ice987987) smartbuttons added (folder:
.smartbuttons.[...]
) - (ice987987) watchdog for WebSocket-Connection added
- (ice987987) device icons fixed
- (ice987987) websocket connection fixed
- (ice987987) cleartimeout added
- (ice987987) WebSocket connection to get values of the devices implemented
- (ice987987) all subscribed states are now capitalized
- (ice987987) new way to set leveltilt values added
- (ice987987) readme updated
- (ice987987) description of several datapoints updated
- (ice987987) icons for main datapoints added
- (ice987987) license year updated
- (ice987987) DP rssi into info-folder moved
- (ice987987) readme.md updated
- (ice987987) dependencies updated
- (ice987987) initial release
MIT License
Copyright (c) 2024 ice987987 [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.