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: |