├── .gitattributes ├── .gitignore ├── DEV_Identify.h ├── DEV_Sensors.h ├── LICENSE ├── TempSensorI2C.ino └── docs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSpan/TempSensorI2C/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .development 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /DEV_Identify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSpan/TempSensorI2C/HEAD/DEV_Identify.h -------------------------------------------------------------------------------- /DEV_Sensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSpan/TempSensorI2C/HEAD/DEV_Sensors.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSpan/TempSensorI2C/HEAD/LICENSE -------------------------------------------------------------------------------- /TempSensorI2C.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSpan/TempSensorI2C/HEAD/TempSensorI2C.ino -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HomeSpan/TempSensorI2C/HEAD/docs/README.md --------------------------------------------------------------------------------