You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
273 B

import sys
from .base import Sensor
from .config import load_config
if sys.implementation == 'micropython':
from .esp_sensors import *
elif getattr(sys.implementation, '_multiarch') == 'arm-linux-gnueabihf':
from .pi_sensors import *
from .misc_sensors import *