This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Homie.h> | |
#include <SoftwareSerial.h> | |
/*************************************************** | |
* Infrared CO2 Sensor 0-50000ppm(Wide Range) | |
* **************************************************** | |
* The follow example is used to detect CO2 concentration. | |
* @author lg.gang([email protected]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://stackoverflow.com/questions/13206695/json-parsing-of-google-maps-direction-api-in-python | |
import re | |
import csv | |
from googlemaps import Client | |
mapService = Client(key='') | |
directions = mapService.directions('start','end',waypoints'one|two|three') | |
directions = directions[0] |
OlderNewer