From a2e407fe478d551b0b9568253922a457a4582a49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Ckylejcarlton=E2=80=9D?= Date: Thu, 6 Apr 2023 10:57:31 -0500 Subject: [PATCH] update taxonomies --- content/wifi-temperature-monitor-part1 .md | 2 +- content/wifi-temperature-monitor-part2.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/wifi-temperature-monitor-part1 .md b/content/wifi-temperature-monitor-part1 .md index 993ceff..b14d898 100644 --- a/content/wifi-temperature-monitor-part1 .md +++ b/content/wifi-temperature-monitor-part1 .md @@ -3,7 +3,7 @@ title = "WiFi Temperature Monitor - Part I" date = 2016-05-22 [taxonomies] -tags = ["Particle", "WiFiTemp"] +tags = ["Particle", "Temperature"] +++ [Particle.io](https://www.particle.io/) has some relatively inexpensive and lightweight IoT boards that connect via WiFi ([Photon](https://www.particle.io/products/hardware/photon-wifi-dev-kit)) or Cellular Networks ([Electron](https://store.particle.io/collections/electron)). They are focused on providing a fully functioning cloud based IDE for development and production devices. Programming is accomplished via [Wiring](http://wiring.org.co/), the same framework as [Arduino](https://www.arduino.cc/). Since the framework is open source down to the bare metal, you can also use C/C++ or ARM assembly. diff --git a/content/wifi-temperature-monitor-part2.md b/content/wifi-temperature-monitor-part2.md index 2bb78b8..3825c97 100644 --- a/content/wifi-temperature-monitor-part2.md +++ b/content/wifi-temperature-monitor-part2.md @@ -3,7 +3,7 @@ title = "WiFi Temperature Monitor - Part II" date = 2016-10-05 [taxonomies] -tags = ["Particle", "WiFiTemp"] +tags = ["Particle", "Temperature"] +++ Since writing the first WiFi temperature monitor post, I’ve implemented retrieving temperature values on a schedule, to generate a real-time dashboard. I came across this [Gadgets Apps Hacks Post](http://www.gadgetsappshacks.com/2014/01/how-to-record-daily-portfolio-values-in.html), which utilizes [Google Apps Script’s](https://developers.google.com/apps-script/) ability to connect to [External APIs](https://developers.google.com/apps-script/guides/services/external) and record stock ticker values over time in [Google Sheets](https://www.google.com/sheets/about/). The method I used in the first part to write the temperature sensor value in a Sheet is more suited for a single import of a larger data set in JSON format. There is also a [tutorial from Particle](https://docs.particle.io/tutorials/projects/maker-kit/#tutorial-4-temperature-logger) that uses [IFTTT](https://ifttt.com/) to log the data in a Sheet. Although the tutorial from Particle might be a little easier to implement, I chose to work solely with Google Apps Script; since I wanted to pull data from other APIs. I’ll use [WeatherUnderground](https://www.wunderground.com/weather/api/d/docs) for the outside temperature and [Nest](https://developers.nest.com/documentation/cloud/get-started) for a comparison of inside temperature from another device.