Skip to content

Commit

Permalink
Drop Mozilla branding.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrstegeman committed Oct 5, 2020
1 parent 8a69625 commit c506a2b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 12 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tplink-adapter

TP-Link Kasa smart plug/bulb adapter for Mozilla WebThings Gateway.
TP-Link Kasa smart plug/bulb adapter for WebThings Gateway.

# Supported Devices

Expand Down Expand Up @@ -56,7 +56,5 @@ TP-Link Tapo devices will **NOT** work, as they use an entirely different protoc
If you're running this add-on outside of the official gateway image for the Raspberry Pi, i.e. you're running on a development machine, you'll need to do the following (adapt as necessary for non-Ubuntu/Debian):

```
sudo apt install python3-dev libnanomsg-dev
sudo pip3 install nnpy
sudo pip3 install git+https://github.com/mozilla-iot/gateway-addon-python.git
sudo pip3 install git+https://github.com/WebThingsIO/gateway-addon-python.git
```
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""TP-Link adapter for Mozilla WebThings Gateway."""
"""TP-Link adapter for WebThings Gateway."""

from os import path
import functools
Expand Down
8 changes: 4 additions & 4 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"author": "Mozilla IoT",
"description": "TP-Link Kasa smart plug/bulb adapter plugin for Mozilla WebThings Gateway",
"author": "WebThingsIO",
"description": "TP-Link Kasa smart plug/bulb adapter plugin for WebThings Gateway",
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/main.py",
Expand All @@ -9,7 +9,7 @@
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/mozilla-iot/tplink-adapter",
"homepage_url": "https://github.com/WebThingsIO/tplink-adapter",
"id": "tplink-adapter",
"license": "MPL-2.0",
"manifest_version": 1,
Expand All @@ -34,5 +34,5 @@
}
},
"short_name": "TP-Link Kasa",
"version": "0.6.1"
"version": "0.6.2"
}
2 changes: 1 addition & 1 deletion pkg/tplink_adapter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""TP-Link adapter for Mozilla WebThings Gateway."""
"""TP-Link adapter for WebThings Gateway."""

from gateway_addon import Adapter, Database
from pyHS100 import Discover, SmartBulb, SmartPlug, SmartStrip
Expand Down
2 changes: 1 addition & 1 deletion pkg/tplink_device.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""TP-Link adapter for Mozilla WebThings Gateway."""
"""TP-Link adapter for WebThings Gateway."""

from gateway_addon import Device
from pyHS100 import SmartDevice, SmartDeviceException
Expand Down
2 changes: 1 addition & 1 deletion pkg/tplink_property.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""TP-Link adapter for Mozilla WebThings Gateway."""
"""TP-Link adapter for WebThings Gateway."""

from gateway_addon import Property
from pyHS100 import SmartDeviceException
Expand Down

0 comments on commit c506a2b

Please sign in to comment.