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
2018/09/17 16:20:13 [INFO] Terraform version: 0.11.8 7a5c1d221ac209bbac66947c369815cd9ca70ed5 | |
2018/09/17 16:20:13 [INFO] Go runtime version: go1.10.1 | |
2018/09/17 16:20:13 [INFO] CLI args: []string{"/home/rob/bin/terraform", "apply"} | |
2018/09/17 16:20:13 [DEBUG] Attempting to open CLI config file: /home/rob/.terraformrc | |
2018/09/17 16:20:13 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2018/09/17 16:20:13 [INFO] CLI command args: []string{"apply"} | |
2018/09/17 16:20:13 [INFO] command: empty terraform config, returning nil | |
2018/09/17 16:20:13 [DEBUG] command: no data state file found for backend config | |
2018/09/17 16:20:13 [DEBUG] New state was assigned lineage "d763c208-ea2b-fe31-03b2-3e5001667c4a" | |
2018/09/17 16:20:13 [INFO] command: backend initialized: <nil> |
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
import time | |
from pms5003 import PMS5003 | |
import argparse | |
import csv | |
from bme280 import BME280 | |
try: | |
from smbus2 import SMBus | |
except ImportError: |
OlderNewer