From 26a812bc1d37bf5a738bccc1a57628dfc9f8836d Mon Sep 17 00:00:00 2001 From: Travis CI Date: Mon, 29 Aug 2016 19:52:33 +0000 Subject: [PATCH] Site updated at 2016-08-29 19:52:32 UTC --- atom.xml | 2 +- .../esp8266-and-micropython-part1/index.html | 4 + blog/archives/index.html | 4 + blog/categories/community/atom.xml | 2 +- blog/categories/device-tracking/atom.xml | 2 +- blog/categories/esp8266/atom.xml | 161 ++++++++++- blog/categories/esp8266/index.html | 39 +++ blog/categories/how-to/atom.xml | 2 +- blog/categories/how-to/index.html | 4 + blog/categories/ibeacons/atom.xml | 2 +- blog/categories/internet-of-things/atom.xml | 2 +- blog/categories/iot-data/atom.xml | 2 +- blog/categories/micropython/atom.xml | 175 +++++++++++ blog/categories/micropython/index.html | 271 ++++++++++++++++++ blog/categories/mqtt/atom.xml | 2 +- blog/categories/organisation/atom.xml | 2 +- blog/categories/owntracks/atom.xml | 2 +- blog/categories/presence-detection/atom.xml | 2 +- .../public-service-announcement/atom.xml | 2 +- blog/categories/release-notes/atom.xml | 2 +- blog/categories/survey/atom.xml | 2 +- blog/categories/talks/atom.xml | 2 +- blog/categories/technology/atom.xml | 2 +- blog/categories/user-stories/atom.xml | 2 +- blog/categories/video/atom.xml | 2 +- blog/categories/website/atom.xml | 2 +- blog/index.html | 6 + blog/posts/2/index.html | 2 + blog/posts/3/index.html | 2 + blog/posts/4/index.html | 2 + blog/posts/5/index.html | 2 + blog/posts/6/index.html | 2 + blog/posts/7/index.html | 2 + blog/posts/8/index.html | 2 + blog/posts/9/index.html | 2 + sitemap.xml | 33 ++- 36 files changed, 716 insertions(+), 35 deletions(-) create mode 100644 blog/categories/micropython/atom.xml create mode 100644 blog/categories/micropython/index.html diff --git a/atom.xml b/atom.xml index e5e9163793..2e5c97f4bd 100644 --- a/atom.xml +++ b/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/2016/07/28/esp8266-and-micropython-part1/index.html b/blog/2016/07/28/esp8266-and-micropython-part1/index.html index 31dd87359d..ea76e569c5 100644 --- a/blog/2016/07/28/esp8266-and-micropython-part1/index.html +++ b/blog/2016/07/28/esp8266-and-micropython-part1/index.html @@ -93,8 +93,12 @@ diff --git a/blog/archives/index.html b/blog/archives/index.html index 4c559e1380..b09fefab4e 100644 --- a/blog/archives/index.html +++ b/blog/archives/index.html @@ -2488,8 +2488,12 @@ diff --git a/blog/categories/community/atom.xml b/blog/categories/community/atom.xml index 91b19eb8a5..4a487648eb 100644 --- a/blog/categories/community/atom.xml +++ b/blog/categories/community/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Community | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/device-tracking/atom.xml b/blog/categories/device-tracking/atom.xml index 7e0562e059..60392cdc68 100644 --- a/blog/categories/device-tracking/atom.xml +++ b/blog/categories/device-tracking/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Device-Tracking | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/esp8266/atom.xml b/blog/categories/esp8266/atom.xml index 7743b9a3b6..fa7e5fd953 100644 --- a/blog/categories/esp8266/atom.xml +++ b/blog/categories/esp8266/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: ESP8266 | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ @@ -13,6 +13,165 @@ Octopress + + <![CDATA[ESP8266 and MicroPython - Part 1]]> + + 2016-07-28T04:00:00+00:00 + https://home-assistant.io/blog/2016/07/28/esp8266-and-micropython-part1 + +The first release of Micropython for ESP8266 was delivered a couple of weeks ago. The [documentation](http://docs.micropython.org/en/latest/esp8266/esp8266_contents.html) covers a lot of ground. This post is providing only a little summary which should get you started. + +Until a couple of weeks ago, the pre-built MicroPython binary for the ESP8266 was only available to backers. This has changed now and it is available to the public for [download](https://micropython.org/download/#esp8266). + + + +The easiest way is to use [esptool.py](https://github.com/themadinventor/esptool) for firmware handling tasks. First erase the flash: + +```bash +$ sudo python esptool.py --port /dev/ttyUSB0 erase_flash +esptool.py v1.0.2-dev +Connecting... +Erasing flash (this may take a while)... +``` + +and then load the firmware. You may adjust the file name of the firmware binary. + +```bash +$ sudo python esptool.py --port /dev/ttyUSB0 --baud 460800 write_flash --flash_size=8m 0 esp8266-2016-07-10-v1.8.2.bin +esptool.py v1.2-dev +Connecting... +Running Cesanta flasher stub... +Flash params set to 0x0020 +Writing 540672 @ 0x0... 540672 (100 %) +Wrote 540672 bytes at 0x0 in 13.1 seconds (330.8 kbit/s)... +Leaving... +``` + +Now reset the device. You should then be able to use the [REPL (Read Evaluate Print Loop)](http://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/repl.html#getting-a-micropython-repl-prompt). On Linux there is `minicom` or `picocom`, on a Mac you can use `screen` (eg. `screen /dev/tty.SLAB_USBtoUART 115200`), and on Windows there is Putty to open a serial connection and get the REPL prompt. + +The [WebREPL](http://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/repl.html#webrepl-a-prompt-over-wifi) work over a wireless connection and allows easy access to a prompt in your browser. An instance of the WebREPL client is hosted at [http://micropython.org/webrepl](http://micropython.org/webrepl). Alternatively, you can create a local clone of their [GitHub repository](https://github.com/micropython/webrepl). This is neccessary if your want to use the command-line tool `webrepl_cli.py` which is mentionend later in this post. + +```bash +$ sudo minicom -D /dev/ttyUSB0 +#4 ets_task(4020e374, 29, 3fff70e8, 10) +WebREPL daemon started on ws://192.168.4.1:8266 +Started webrepl in setup mode +could not open file 'main.py' for reading + +#5 ets_task(4010035c, 3, 3fff6360, 4) +MicroPython v1.8.2-9-g805c2b9 on 2016-07-10; ESP module with ESP8266 +Type "help()" for more information. +>>> +``` + +

+The public build of the firmware may be different than the firmware distributed to the backers of the campaign. Especially in regard of the [available modules](http://docs.micropython.org/en/latest/esp8266/py-modindex.html), turned on debug messages, and alike. Also, the WebREPL may not be started by default. +

+ +Connect a LED to pin 5 (or another pin of your choosing) to check if the ESP8266 is working as expected. + +```python +>>> import machine +>>> pin = machine.Pin(5, machine.Pin.OUT) +>>> pin.high() +``` + +You can toogle the LED by changing its state with `pin.high()` and `pin.low()`. + +Various ESP8266 development board are shipped with an onboard photocell or a light dependent resistors (LDR) connected to the analog pin of your ESP8266 check if you are able to obtain a value. + +```python +>>> import machine +>>> brightness = machine.ADC(0) +>>> brightness.read() +``` + +Make sure that you are familiar with REPL and WebREPL because this will be needed soon. Keep in mind the password for the WebREPL access. + +Read the [instructions](http://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/network_basics.html) about how to setup your wireless connection. Basically you need to upload a `boot.py` file to the microcontroller and this file is taking care of the connection setup. Below you find a sample which is more or less the same as shown in the [documentation](http://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/network_basics.html#configuration-of-the-wifi). + +```python +def do_connect(): + import network + + SSID = 'SSID' + PASSWORD = 'PASSWORD' + + sta_if = network.WLAN(network.STA_IF) + ap_if = network.WLAN(network.AP_IF) + if ap_if.active(): + ap_if.active(False) + if not sta_if.isconnected(): + print('connecting to network...') + sta_if.active(True) + sta_if.connect(SSID, PASSWORD) + while not sta_if.isconnected(): + pass + print('Network configuration:', sta_if.ifconfig()) +``` + +Upload this file with `webrepl_cli.py` or the WebREPL: + +```bash +$ python webrepl_cli.py boot.py 192.168.4.1:/boot.py +``` + +If you reboot, you should see your current IP address in the terminal. + +```bash +>>> Network configuration: ('192.168.0.10', '255.255.255.0', '192.168.0.1', '192.168.0.1') +``` + +First let's create a little consumer for Home Assistant sensor's state. The code to place in `main.py` is a mixture of code from above and the [RESTful API](/developers/rest_api/) of Home Assistant. If the temperature in the kitchen is higher than 20 °C then the LED connected to pin 5 is switched on. + +

+If a module is missing then you need to download is it from [MicroPython Library overview](https://github.com/micropython/micropython-lib) and upload it to the ESP8266 with `webrepl_cli.py` manually. +

+ +```python +# Sample code to request the state of a Home Assistant entity. + +API_PASSWORD = 'YOUR_PASSWORD' +URL = 'http://192.168.0.5:8123/api/states/' +ENTITY = 'sensor.kitchen_temperature' +TIMEOUT = 30 +PIN = 5 + +def get_data(): + import urequests + url = '{}{}'.format(URL, ENTITY) + headers = {'x-ha-access': API_PASSWORD, + 'content-type': 'application/json'} + resp = urequests.get(URL, headers=headers) + return resp.json()['state'] + +def main(): + import machine + import time + + pin = machine.Pin(PIN, machine.Pin.OUT) + while True: + try: + if int(get_data()) >= 20: + pin.high() + else: + pin.low() + except TypeError: + pass + time.sleep(TIMEOUT) + +if __name__ == '__main__': + print('Get the state of {}'.format(ENTITY)) + main() +``` + +Upload `main.py` the same way as `boot.py`. After a reboot (`>>> import machine` and `>>> machine.reboot()`) or power-cycling your physical notifier is ready. + +If you run into trouble, press "Ctrl+c" in the REPL to stop the execution of the code, enter `>>> import webrepl` and `>>> webrepl.start()`, and upload your fixed file. + +]]>
+
+ <![CDATA[Report the temperature with ESP8266 to MQTT]]> diff --git a/blog/categories/esp8266/index.html b/blog/categories/esp8266/index.html index 481df2bca5..4b20be4b90 100644 --- a/blog/categories/esp8266/index.html +++ b/blog/categories/esp8266/index.html @@ -96,6 +96,45 @@ +

2016

+ + + + + +

2015

diff --git a/blog/categories/how-to/atom.xml b/blog/categories/how-to/atom.xml index 4c956f77f3..c3c3d25768 100644 --- a/blog/categories/how-to/atom.xml +++ b/blog/categories/how-to/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: How-To | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/how-to/index.html b/blog/categories/how-to/index.html index 8f66a36a47..eada54d459 100644 --- a/blog/categories/how-to/index.html +++ b/blog/categories/how-to/index.html @@ -181,8 +181,12 @@ diff --git a/blog/categories/ibeacons/atom.xml b/blog/categories/ibeacons/atom.xml index 1c055a8dbe..5453a9bf35 100644 --- a/blog/categories/ibeacons/atom.xml +++ b/blog/categories/ibeacons/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: iBeacons | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/internet-of-things/atom.xml b/blog/categories/internet-of-things/atom.xml index 0ea6187696..72bc767a0d 100644 --- a/blog/categories/internet-of-things/atom.xml +++ b/blog/categories/internet-of-things/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Internet-of-Things | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/iot-data/atom.xml b/blog/categories/iot-data/atom.xml index c9e6a2e16f..e749292963 100644 --- a/blog/categories/iot-data/atom.xml +++ b/blog/categories/iot-data/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: IoT-Data | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/micropython/atom.xml b/blog/categories/micropython/atom.xml new file mode 100644 index 0000000000..ead116d96f --- /dev/null +++ b/blog/categories/micropython/atom.xml @@ -0,0 +1,175 @@ + + + + <![CDATA[Category: Micropython | Home Assistant]]> + + + 2016-08-29T19:50:52+00:00 + https://home-assistant.io/ + + + + + Octopress + + + + <![CDATA[ESP8266 and MicroPython - Part 1]]> + + 2016-07-28T04:00:00+00:00 + https://home-assistant.io/blog/2016/07/28/esp8266-and-micropython-part1 + +The first release of Micropython for ESP8266 was delivered a couple of weeks ago. The [documentation](http://docs.micropython.org/en/latest/esp8266/esp8266_contents.html) covers a lot of ground. This post is providing only a little summary which should get you started. + +Until a couple of weeks ago, the pre-built MicroPython binary for the ESP8266 was only available to backers. This has changed now and it is available to the public for [download](https://micropython.org/download/#esp8266). + + + +The easiest way is to use [esptool.py](https://github.com/themadinventor/esptool) for firmware handling tasks. First erase the flash: + +```bash +$ sudo python esptool.py --port /dev/ttyUSB0 erase_flash +esptool.py v1.0.2-dev +Connecting... +Erasing flash (this may take a while)... +``` + +and then load the firmware. You may adjust the file name of the firmware binary. + +```bash +$ sudo python esptool.py --port /dev/ttyUSB0 --baud 460800 write_flash --flash_size=8m 0 esp8266-2016-07-10-v1.8.2.bin +esptool.py v1.2-dev +Connecting... +Running Cesanta flasher stub... +Flash params set to 0x0020 +Writing 540672 @ 0x0... 540672 (100 %) +Wrote 540672 bytes at 0x0 in 13.1 seconds (330.8 kbit/s)... +Leaving... +``` + +Now reset the device. You should then be able to use the [REPL (Read Evaluate Print Loop)](http://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/repl.html#getting-a-micropython-repl-prompt). On Linux there is `minicom` or `picocom`, on a Mac you can use `screen` (eg. `screen /dev/tty.SLAB_USBtoUART 115200`), and on Windows there is Putty to open a serial connection and get the REPL prompt. + +The [WebREPL](http://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/repl.html#webrepl-a-prompt-over-wifi) work over a wireless connection and allows easy access to a prompt in your browser. An instance of the WebREPL client is hosted at [http://micropython.org/webrepl](http://micropython.org/webrepl). Alternatively, you can create a local clone of their [GitHub repository](https://github.com/micropython/webrepl). This is neccessary if your want to use the command-line tool `webrepl_cli.py` which is mentionend later in this post. + +```bash +$ sudo minicom -D /dev/ttyUSB0 +#4 ets_task(4020e374, 29, 3fff70e8, 10) +WebREPL daemon started on ws://192.168.4.1:8266 +Started webrepl in setup mode +could not open file 'main.py' for reading + +#5 ets_task(4010035c, 3, 3fff6360, 4) +MicroPython v1.8.2-9-g805c2b9 on 2016-07-10; ESP module with ESP8266 +Type "help()" for more information. +>>> +``` + +

+The public build of the firmware may be different than the firmware distributed to the backers of the campaign. Especially in regard of the [available modules](http://docs.micropython.org/en/latest/esp8266/py-modindex.html), turned on debug messages, and alike. Also, the WebREPL may not be started by default. +

+ +Connect a LED to pin 5 (or another pin of your choosing) to check if the ESP8266 is working as expected. + +```python +>>> import machine +>>> pin = machine.Pin(5, machine.Pin.OUT) +>>> pin.high() +``` + +You can toogle the LED by changing its state with `pin.high()` and `pin.low()`. + +Various ESP8266 development board are shipped with an onboard photocell or a light dependent resistors (LDR) connected to the analog pin of your ESP8266 check if you are able to obtain a value. + +```python +>>> import machine +>>> brightness = machine.ADC(0) +>>> brightness.read() +``` + +Make sure that you are familiar with REPL and WebREPL because this will be needed soon. Keep in mind the password for the WebREPL access. + +Read the [instructions](http://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/network_basics.html) about how to setup your wireless connection. Basically you need to upload a `boot.py` file to the microcontroller and this file is taking care of the connection setup. Below you find a sample which is more or less the same as shown in the [documentation](http://docs.micropython.org/en/latest/esp8266/esp8266/tutorial/network_basics.html#configuration-of-the-wifi). + +```python +def do_connect(): + import network + + SSID = 'SSID' + PASSWORD = 'PASSWORD' + + sta_if = network.WLAN(network.STA_IF) + ap_if = network.WLAN(network.AP_IF) + if ap_if.active(): + ap_if.active(False) + if not sta_if.isconnected(): + print('connecting to network...') + sta_if.active(True) + sta_if.connect(SSID, PASSWORD) + while not sta_if.isconnected(): + pass + print('Network configuration:', sta_if.ifconfig()) +``` + +Upload this file with `webrepl_cli.py` or the WebREPL: + +```bash +$ python webrepl_cli.py boot.py 192.168.4.1:/boot.py +``` + +If you reboot, you should see your current IP address in the terminal. + +```bash +>>> Network configuration: ('192.168.0.10', '255.255.255.0', '192.168.0.1', '192.168.0.1') +``` + +First let's create a little consumer for Home Assistant sensor's state. The code to place in `main.py` is a mixture of code from above and the [RESTful API](/developers/rest_api/) of Home Assistant. If the temperature in the kitchen is higher than 20 °C then the LED connected to pin 5 is switched on. + +

+If a module is missing then you need to download is it from [MicroPython Library overview](https://github.com/micropython/micropython-lib) and upload it to the ESP8266 with `webrepl_cli.py` manually. +

+ +```python +# Sample code to request the state of a Home Assistant entity. + +API_PASSWORD = 'YOUR_PASSWORD' +URL = 'http://192.168.0.5:8123/api/states/' +ENTITY = 'sensor.kitchen_temperature' +TIMEOUT = 30 +PIN = 5 + +def get_data(): + import urequests + url = '{}{}'.format(URL, ENTITY) + headers = {'x-ha-access': API_PASSWORD, + 'content-type': 'application/json'} + resp = urequests.get(URL, headers=headers) + return resp.json()['state'] + +def main(): + import machine + import time + + pin = machine.Pin(PIN, machine.Pin.OUT) + while True: + try: + if int(get_data()) >= 20: + pin.high() + else: + pin.low() + except TypeError: + pass + time.sleep(TIMEOUT) + +if __name__ == '__main__': + print('Get the state of {}'.format(ENTITY)) + main() +``` + +Upload `main.py` the same way as `boot.py`. After a reboot (`>>> import machine` and `>>> machine.reboot()`) or power-cycling your physical notifier is ready. + +If you run into trouble, press "Ctrl+c" in the REPL to stop the execution of the code, enter `>>> import webrepl` and `>>> webrepl.start()`, and upload your fixed file. + +]]>
+
+ +
diff --git a/blog/categories/micropython/index.html b/blog/categories/micropython/index.html new file mode 100644 index 0000000000..7bfbae3f43 --- /dev/null +++ b/blog/categories/micropython/index.html @@ -0,0 +1,271 @@ + + + + + + + + + + Category: Micropython - Home Assistant + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+ + + +
+
+ +
+ + + + + +
+ + + + +
+
+ + + + + + + \ No newline at end of file diff --git a/blog/categories/mqtt/atom.xml b/blog/categories/mqtt/atom.xml index 8f1336ea95..5ccbfc39ee 100644 --- a/blog/categories/mqtt/atom.xml +++ b/blog/categories/mqtt/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: MQTT | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/organisation/atom.xml b/blog/categories/organisation/atom.xml index 0aeb5a5375..570d4b84a7 100644 --- a/blog/categories/organisation/atom.xml +++ b/blog/categories/organisation/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Organisation | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/owntracks/atom.xml b/blog/categories/owntracks/atom.xml index dba27dbdb5..e4970bf4dd 100644 --- a/blog/categories/owntracks/atom.xml +++ b/blog/categories/owntracks/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: OwnTracks | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/presence-detection/atom.xml b/blog/categories/presence-detection/atom.xml index 9146481f0e..dd8b72e356 100644 --- a/blog/categories/presence-detection/atom.xml +++ b/blog/categories/presence-detection/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Presence-Detection | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/public-service-announcement/atom.xml b/blog/categories/public-service-announcement/atom.xml index 25f1f0c014..f2b7f7a815 100644 --- a/blog/categories/public-service-announcement/atom.xml +++ b/blog/categories/public-service-announcement/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Public-Service-Announcement | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/release-notes/atom.xml b/blog/categories/release-notes/atom.xml index ffc224d0fe..2b3baa9127 100644 --- a/blog/categories/release-notes/atom.xml +++ b/blog/categories/release-notes/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Release-Notes | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/survey/atom.xml b/blog/categories/survey/atom.xml index 873d1392d6..173d75be9d 100644 --- a/blog/categories/survey/atom.xml +++ b/blog/categories/survey/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Survey | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/talks/atom.xml b/blog/categories/talks/atom.xml index 4d19cfe50b..a364aae937 100644 --- a/blog/categories/talks/atom.xml +++ b/blog/categories/talks/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Talks | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/technology/atom.xml b/blog/categories/technology/atom.xml index 7599429c22..abf84c254e 100644 --- a/blog/categories/technology/atom.xml +++ b/blog/categories/technology/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Technology | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/user-stories/atom.xml b/blog/categories/user-stories/atom.xml index 3a2676c54a..a3597cf15a 100644 --- a/blog/categories/user-stories/atom.xml +++ b/blog/categories/user-stories/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: User-Stories | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/video/atom.xml b/blog/categories/video/atom.xml index aea458bdf4..2674d9c2fd 100644 --- a/blog/categories/video/atom.xml +++ b/blog/categories/video/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Video | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/categories/website/atom.xml b/blog/categories/website/atom.xml index 7d258467fb..b2c6ba4d5c 100644 --- a/blog/categories/website/atom.xml +++ b/blog/categories/website/atom.xml @@ -4,7 +4,7 @@ <![CDATA[Category: Website | Home Assistant]]> - 2016-08-29T19:27:40+00:00 + 2016-08-29T19:50:52+00:00 https://home-assistant.io/ diff --git a/blog/index.html b/blog/index.html index 1e537ae9b4..63d0cf3233 100644 --- a/blog/index.html +++ b/blog/index.html @@ -723,8 +723,12 @@ Heatmap
    +
  • ESP8266
  • +
  • How-To
  • +
  • Micropython
  • +
@@ -918,6 +922,8 @@ One of the graphs created with this tutorial.
  • MQTT
  • +
  • Micropython
  • +
  • Organisation
  • OwnTracks
  • diff --git a/blog/posts/2/index.html b/blog/posts/2/index.html index 2c4ff77f60..4ddd289416 100644 --- a/blog/posts/2/index.html +++ b/blog/posts/2/index.html @@ -852,6 +852,8 @@ In the past month I was thinking about ways to integrate USB webcams into Home A
  • MQTT
  • +
  • Micropython
  • +
  • Organisation
  • OwnTracks
  • diff --git a/blog/posts/3/index.html b/blog/posts/3/index.html index f8b3d8e741..a871b6f6b6 100644 --- a/blog/posts/3/index.html +++ b/blog/posts/3/index.html @@ -811,6 +811,8 @@
  • MQTT
  • +
  • Micropython
  • +
  • Organisation
  • OwnTracks
  • diff --git a/blog/posts/4/index.html b/blog/posts/4/index.html index 62d3888e4c..69e897cac9 100644 --- a/blog/posts/4/index.html +++ b/blog/posts/4/index.html @@ -890,6 +890,8 @@ Hold your NFC tag against the belly of Garfield to unlock the alarm.
  • MQTT
  • +
  • Micropython
  • +
  • Organisation
  • OwnTracks
  • diff --git a/blog/posts/5/index.html b/blog/posts/5/index.html index 96e625bd3b..105edc3d1f 100644 --- a/blog/posts/5/index.html +++ b/blog/posts/5/index.html @@ -714,6 +714,8 @@ The InfluxDB database is a so-called time se
  • MQTT
  • +
  • Micropython
  • +
  • Organisation
  • OwnTracks
  • diff --git a/blog/posts/6/index.html b/blog/posts/6/index.html index 36d1d50146..4148fb798b 100644 --- a/blog/posts/6/index.html +++ b/blog/posts/6/index.html @@ -728,6 +728,8 @@ Inspried by a MQTT +
  • Micropython
  • +
  • Organisation
  • OwnTracks
  • diff --git a/blog/posts/7/index.html b/blog/posts/7/index.html index fb3afac8ad..4422a44925 100644 --- a/blog/posts/7/index.html +++ b/blog/posts/7/index.html @@ -754,6 +754,8 @@ Andythigpen has contributed a script component. This allows users to create a se
  • MQTT
  • +
  • Micropython
  • +
  • Organisation
  • OwnTracks
  • diff --git a/blog/posts/8/index.html b/blog/posts/8/index.html index f8d5a4ed45..9a2f6aa366 100644 --- a/blog/posts/8/index.html +++ b/blog/posts/8/index.html @@ -706,6 +706,8 @@ This article will try to explain how they all relate.

  • MQTT
  • +
  • Micropython
  • +
  • Organisation
  • OwnTracks
  • diff --git a/blog/posts/9/index.html b/blog/posts/9/index.html index 4b00c56c49..fdffdaae6d 100644 --- a/blog/posts/9/index.html +++ b/blog/posts/9/index.html @@ -172,6 +172,8 @@
  • MQTT
  • +
  • Micropython
  • +
  • Organisation
  • OwnTracks
  • diff --git a/sitemap.xml b/sitemap.xml index e73d1b1637..cda6d0d2a0 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -622,6 +622,9 @@ https://home-assistant.io/blog/categories/iot-data/ +https://home-assistant.io/blog/categories/micropython/ + + https://home-assistant.io/blog/posts/2/ @@ -1976,62 +1979,62 @@ https://home-assistant.io/demo/frontend.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/demo/index.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/demo/panels/ha-panel-dev-event.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/demo/panels/ha-panel-dev-info.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/demo/panels/ha-panel-dev-service.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/demo/panels/ha-panel-dev-state.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/demo/panels/ha-panel-dev-template.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/demo/panels/ha-panel-history.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/demo/panels/ha-panel-iframe.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/demo/panels/ha-panel-logbook.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/demo/panels/ha-panel-map.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/googlef4f3693c209fe788.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/static/fonts/roboto/DESCRIPTION.en_us.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/static/fonts/robotomono/DESCRIPTION.en_us.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00 https://home-assistant.io/static/mdi-demo.html -2016-08-29T19:26:32+00:00 +2016-08-29T19:50:02+00:00