Skip to content

Commit 2192069

Browse files
committed
Rename to webthing-arduino
1 parent 5306ab1 commit 2192069

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
webthing
2-
========
1+
webthing-arduino
2+
================
33

44
A simple server for the ESP8266, the ESP32, or any WiFi101-compatible board
55
that implements Mozilla's proposed Web of Things API. The [LED
6-
example](https://github.com/mozilla-iot/webthing-esp8266/blob/master/examples/LED)
6+
example](https://github.com/mozilla-iot/webthing-arduino/blob/master/examples/LED)
77
exposes an onOffSwitch named "Built-in LED" which controls the board's built-in
88
LED. The [LED Lamp
9-
example](https://github.com/mozilla-iot/webthing-esp8266/blob/master/examples/LEDLamp)
9+
example](https://github.com/mozilla-iot/webthing-arduino/blob/master/examples/LEDLamp)
1010
ups the ante by introducing a `level` property to expose a dimmableLight.
1111

1212
## Arduino
@@ -28,11 +28,11 @@ Install the WiFi101 library from the Arduino library manager.
2828
Make sure to install the ArduinoJson library if you don't have it
2929
installed already.
3030

31-
![ArduinoJson install process](https://github.com/mozilla-iot/webthing-esp8266/raw/master/docs/arduinojson.png)
31+
![ArduinoJson install process](https://github.com/mozilla-iot/webthing-arduino/raw/master/docs/arduinojson.png)
3232

3333
Next, download this library from the same library manager by searching for `webthing`.
3434

35-
![add zip library and LED example](https://github.com/mozilla-iot/webthing-esp8266/raw/master/docs/add-library-open-example.png)
35+
![add zip library and LED example](https://github.com/mozilla-iot/webthing-arduino/raw/master/docs/add-library-open-example.png)
3636

3737
You should be able to upload the example sketch onto your board and use it as a
3838
simple Web Thing. This Web Thing can be talked to using the WoT API or added to
@@ -46,7 +46,7 @@ your board using our proposed API.
4646

4747
## PlatformIO
4848

49-
Add the `webthing-esp8266` library through PlatformIO's package management
49+
Add the `webthing-arduino` library through PlatformIO's package management
5050
interface. You may also need to manually add the ArduinoJson and other
5151
libraries to your project.
5252

examples/PlatformIO/BME280/platformio.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ env_default = samw25
1818
; https://platformio.org/lib/show/299/WiFi101
1919
; https://platformio.org/lib/show/2848/ArduinoMDNS
2020
lib_deps =
21-
https://github.com/mozilla-iot/webthing-esp8266.git
21+
https://github.com/mozilla-iot/webthing-arduino.git
2222
ArduinoJson
2323
WiFi101
2424
ArduinoMDNS

examples/PlatformIO/LED/platformio.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[global]
1818
lib_deps =
19-
https://github.com/mozilla-iot/webthing-esp8266.git
19+
https://github.com/mozilla-iot/webthing-arduino.git
2020
ArduinoJson
2121

2222
[env:nodemcuv2]

examples/PlatformIO/TextDisplay/platformio.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
[global]
1818
lib_deps =
19-
https://github.com/mozilla-iot/webthing-esp8266.git
19+
https://github.com/mozilla-iot/webthing-arduino.git
2020
ArduinoJson
2121
Adafruit GFX Library
2222
Adafruit SSD1306

library.properties

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name=webthing-esp8266
2-
version=0.2.0
1+
name=webthing-arduino
2+
version=0.3.0
33
author=Mozilla IoT <[email protected]>
44
maintainer=James Hobin <[email protected]>
5-
sentence=A library for creating ESP8266-based Web Things using the Web of Things API
6-
paragraph=Compatible with the Mozilla IoT Gateway
5+
sentence=A library for creating Web Things using the Web of Things API
6+
paragraph=Runs on ESP8266, ESP32, and WiFi101 boards. Compatible with the Mozilla IoT Gateway.
77
category=Communication
8-
url=https://github.com/mozilla-iot/webthing-esp8266
8+
url=https://github.com/mozilla-iot/webthing-arduino

0 commit comments

Comments
 (0)