├── .gitignore ├── .vscode └── c_cpp_properties.json ├── README.md └── components └── dallasng ├── __init__.py ├── dallasng_component.cpp ├── dallasng_component.h ├── dallasng_temperature_sensor.h └── sensor.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | 3 | -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrandell/dallasng/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrandell/dallasng/HEAD/README.md -------------------------------------------------------------------------------- /components/dallasng/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrandell/dallasng/HEAD/components/dallasng/__init__.py -------------------------------------------------------------------------------- /components/dallasng/dallasng_component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrandell/dallasng/HEAD/components/dallasng/dallasng_component.cpp -------------------------------------------------------------------------------- /components/dallasng/dallasng_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrandell/dallasng/HEAD/components/dallasng/dallasng_component.h -------------------------------------------------------------------------------- /components/dallasng/dallasng_temperature_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrandell/dallasng/HEAD/components/dallasng/dallasng_temperature_sensor.h -------------------------------------------------------------------------------- /components/dallasng/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrandell/dallasng/HEAD/components/dallasng/sensor.py --------------------------------------------------------------------------------