├── .gitignore ├── LICENSE.txt ├── README.md ├── cables └── RTD Harness CR8MDV.pdf ├── firmware └── esp32-20180511-v1.9.4.bin ├── images ├── OSHW_mark_US000151.png ├── cabled_adapter.png ├── hallowing_front.jpg ├── hallowing_rear.jpg ├── sensetemp_pcbs.jpg └── stacking_adapter.png ├── license ├── CHANGES.md ├── PRODUCT.md ├── cern_ohl_v_1_2.pdf └── cern_ohl_v_1_2_howto.pdf ├── revisions ├── Adapter - Cabled 2 wire │ ├── Adapter - Cabled 2 wire [CRXB4M].brd │ ├── Adapter - Cabled 2 wire [CRXB4M].sch │ ├── bottom.png │ └── top.png ├── Adapter - Stacking 2 wire │ ├── Adapter - Stacking 2 wire [CRY8EI].brd │ ├── Adapter - Stacking 2 wire [CRY8EI].sch │ ├── bottom.png │ └── top.png ├── CREAES │ ├── Bill of Materials.csv │ ├── SenseTemp - CREAES - Board.pdf │ ├── SenseTemp - CREAES - Schematic.pdf │ ├── SenseTemp - CREAES - bottom.png │ ├── SenseTemp - CREAES - top.png │ ├── SenseTemp - CREAES.brd │ ├── SenseTemp - CREAES.png │ ├── SenseTemp - CREAES.sch │ └── bom_macrofab.xlsx ├── README.md ├── X9EG │ ├── Bill of Materials.csv │ ├── Feather RTD - X9EG - Board.pdf │ ├── Feather RTD - X9EG - Schematic.pdf │ ├── Feather RTD - X9EG.brd │ ├── Feather RTD - X9EG.json │ └── Feather RTD - X9EG.sch └── XTMT │ ├── Feather-RTD.brd │ ├── Feather-RTD.sch │ ├── Feather-RTD_board.pdf │ └── Feather-RTD_schematic.pdf ├── software-circuitpython ├── README.md ├── autocal.py ├── code-console.py ├── code-hallowing.py ├── code-oled.py └── lib │ ├── adafruit_bus_device │ ├── __init__.py │ ├── i2c_device.mpy │ └── spi_device.mpy │ ├── adafruit_max31865.py │ ├── adafruit_rgb_display │ ├── __init__.py │ ├── rgb.mpy │ └── st7735.mpy │ ├── adafruit_ssd1306.mpy │ └── neopixel.mpy └── software-micropython ├── README.md ├── lib ├── adafruit_max31865.py ├── microWebSocket.py ├── microWebSrv.py ├── microWebTemplate.py ├── mqtt.py └── spi_device.py ├── main-console.py ├── main-mqtt.py ├── main.py ├── settings-mqtt.json.example ├── settings.json.example └── www ├── chart.js ├── chart.min.js └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/README.md -------------------------------------------------------------------------------- /cables/RTD Harness CR8MDV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/cables/RTD Harness CR8MDV.pdf -------------------------------------------------------------------------------- /firmware/esp32-20180511-v1.9.4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/firmware/esp32-20180511-v1.9.4.bin -------------------------------------------------------------------------------- /images/OSHW_mark_US000151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/images/OSHW_mark_US000151.png -------------------------------------------------------------------------------- /images/cabled_adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/images/cabled_adapter.png -------------------------------------------------------------------------------- /images/hallowing_front.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/images/hallowing_front.jpg -------------------------------------------------------------------------------- /images/hallowing_rear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/images/hallowing_rear.jpg -------------------------------------------------------------------------------- /images/sensetemp_pcbs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/images/sensetemp_pcbs.jpg -------------------------------------------------------------------------------- /images/stacking_adapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/images/stacking_adapter.png -------------------------------------------------------------------------------- /license/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/license/CHANGES.md -------------------------------------------------------------------------------- /license/PRODUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/license/PRODUCT.md -------------------------------------------------------------------------------- /license/cern_ohl_v_1_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/license/cern_ohl_v_1_2.pdf -------------------------------------------------------------------------------- /license/cern_ohl_v_1_2_howto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/license/cern_ohl_v_1_2_howto.pdf -------------------------------------------------------------------------------- /revisions/Adapter - Cabled 2 wire/Adapter - Cabled 2 wire [CRXB4M].brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/Adapter - Cabled 2 wire/Adapter - Cabled 2 wire [CRXB4M].brd -------------------------------------------------------------------------------- /revisions/Adapter - Cabled 2 wire/Adapter - Cabled 2 wire [CRXB4M].sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/Adapter - Cabled 2 wire/Adapter - Cabled 2 wire [CRXB4M].sch -------------------------------------------------------------------------------- /revisions/Adapter - Cabled 2 wire/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/Adapter - Cabled 2 wire/bottom.png -------------------------------------------------------------------------------- /revisions/Adapter - Cabled 2 wire/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/Adapter - Cabled 2 wire/top.png -------------------------------------------------------------------------------- /revisions/Adapter - Stacking 2 wire/Adapter - Stacking 2 wire [CRY8EI].brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/Adapter - Stacking 2 wire/Adapter - Stacking 2 wire [CRY8EI].brd -------------------------------------------------------------------------------- /revisions/Adapter - Stacking 2 wire/Adapter - Stacking 2 wire [CRY8EI].sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/Adapter - Stacking 2 wire/Adapter - Stacking 2 wire [CRY8EI].sch -------------------------------------------------------------------------------- /revisions/Adapter - Stacking 2 wire/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/Adapter - Stacking 2 wire/bottom.png -------------------------------------------------------------------------------- /revisions/Adapter - Stacking 2 wire/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/Adapter - Stacking 2 wire/top.png -------------------------------------------------------------------------------- /revisions/CREAES/Bill of Materials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/CREAES/Bill of Materials.csv -------------------------------------------------------------------------------- /revisions/CREAES/SenseTemp - CREAES - Board.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/CREAES/SenseTemp - CREAES - Board.pdf -------------------------------------------------------------------------------- /revisions/CREAES/SenseTemp - CREAES - Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/CREAES/SenseTemp - CREAES - Schematic.pdf -------------------------------------------------------------------------------- /revisions/CREAES/SenseTemp - CREAES - bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/CREAES/SenseTemp - CREAES - bottom.png -------------------------------------------------------------------------------- /revisions/CREAES/SenseTemp - CREAES - top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/CREAES/SenseTemp - CREAES - top.png -------------------------------------------------------------------------------- /revisions/CREAES/SenseTemp - CREAES.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/CREAES/SenseTemp - CREAES.brd -------------------------------------------------------------------------------- /revisions/CREAES/SenseTemp - CREAES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/CREAES/SenseTemp - CREAES.png -------------------------------------------------------------------------------- /revisions/CREAES/SenseTemp - CREAES.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/CREAES/SenseTemp - CREAES.sch -------------------------------------------------------------------------------- /revisions/CREAES/bom_macrofab.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/CREAES/bom_macrofab.xlsx -------------------------------------------------------------------------------- /revisions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/README.md -------------------------------------------------------------------------------- /revisions/X9EG/Bill of Materials.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/X9EG/Bill of Materials.csv -------------------------------------------------------------------------------- /revisions/X9EG/Feather RTD - X9EG - Board.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/X9EG/Feather RTD - X9EG - Board.pdf -------------------------------------------------------------------------------- /revisions/X9EG/Feather RTD - X9EG - Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/X9EG/Feather RTD - X9EG - Schematic.pdf -------------------------------------------------------------------------------- /revisions/X9EG/Feather RTD - X9EG.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/X9EG/Feather RTD - X9EG.brd -------------------------------------------------------------------------------- /revisions/X9EG/Feather RTD - X9EG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/X9EG/Feather RTD - X9EG.json -------------------------------------------------------------------------------- /revisions/X9EG/Feather RTD - X9EG.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/X9EG/Feather RTD - X9EG.sch -------------------------------------------------------------------------------- /revisions/XTMT/Feather-RTD.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/XTMT/Feather-RTD.brd -------------------------------------------------------------------------------- /revisions/XTMT/Feather-RTD.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/XTMT/Feather-RTD.sch -------------------------------------------------------------------------------- /revisions/XTMT/Feather-RTD_board.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/XTMT/Feather-RTD_board.pdf -------------------------------------------------------------------------------- /revisions/XTMT/Feather-RTD_schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/revisions/XTMT/Feather-RTD_schematic.pdf -------------------------------------------------------------------------------- /software-circuitpython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/README.md -------------------------------------------------------------------------------- /software-circuitpython/autocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/autocal.py -------------------------------------------------------------------------------- /software-circuitpython/code-console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/code-console.py -------------------------------------------------------------------------------- /software-circuitpython/code-hallowing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/code-hallowing.py -------------------------------------------------------------------------------- /software-circuitpython/code-oled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/code-oled.py -------------------------------------------------------------------------------- /software-circuitpython/lib/adafruit_bus_device/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software-circuitpython/lib/adafruit_bus_device/i2c_device.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/lib/adafruit_bus_device/i2c_device.mpy -------------------------------------------------------------------------------- /software-circuitpython/lib/adafruit_bus_device/spi_device.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/lib/adafruit_bus_device/spi_device.mpy -------------------------------------------------------------------------------- /software-circuitpython/lib/adafruit_max31865.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/lib/adafruit_max31865.py -------------------------------------------------------------------------------- /software-circuitpython/lib/adafruit_rgb_display/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/lib/adafruit_rgb_display/__init__.py -------------------------------------------------------------------------------- /software-circuitpython/lib/adafruit_rgb_display/rgb.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/lib/adafruit_rgb_display/rgb.mpy -------------------------------------------------------------------------------- /software-circuitpython/lib/adafruit_rgb_display/st7735.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/lib/adafruit_rgb_display/st7735.mpy -------------------------------------------------------------------------------- /software-circuitpython/lib/adafruit_ssd1306.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/lib/adafruit_ssd1306.mpy -------------------------------------------------------------------------------- /software-circuitpython/lib/neopixel.mpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-circuitpython/lib/neopixel.mpy -------------------------------------------------------------------------------- /software-micropython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/README.md -------------------------------------------------------------------------------- /software-micropython/lib/adafruit_max31865.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/lib/adafruit_max31865.py -------------------------------------------------------------------------------- /software-micropython/lib/microWebSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/lib/microWebSocket.py -------------------------------------------------------------------------------- /software-micropython/lib/microWebSrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/lib/microWebSrv.py -------------------------------------------------------------------------------- /software-micropython/lib/microWebTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/lib/microWebTemplate.py -------------------------------------------------------------------------------- /software-micropython/lib/mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/lib/mqtt.py -------------------------------------------------------------------------------- /software-micropython/lib/spi_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/lib/spi_device.py -------------------------------------------------------------------------------- /software-micropython/main-console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/main-console.py -------------------------------------------------------------------------------- /software-micropython/main-mqtt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/main-mqtt.py -------------------------------------------------------------------------------- /software-micropython/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/main.py -------------------------------------------------------------------------------- /software-micropython/settings-mqtt.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/settings-mqtt.json.example -------------------------------------------------------------------------------- /software-micropython/settings.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/settings.json.example -------------------------------------------------------------------------------- /software-micropython/www/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/www/chart.js -------------------------------------------------------------------------------- /software-micropython/www/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/www/chart.min.js -------------------------------------------------------------------------------- /software-micropython/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CapableRobot/SenseTemp/HEAD/software-micropython/www/index.html --------------------------------------------------------------------------------