├── KiCad ├── .gitignore ├── Printing Print Schematic.pdf ├── README.md ├── Reflow Control Board Rev 2-rescue.dcm ├── Reflow Control Board Rev 2.kicad_pcb ├── Reflow Control Board Rev 2.pretty │ ├── 0805.kicad_mod │ ├── 1206.kicad_mod │ ├── 1X02_LOCK.kicad_mod │ ├── 1X03_LOCK.kicad_mod │ ├── 2X4.kicad_mod │ ├── AVRISP.kicad_mod │ ├── BATTCON_12MM.kicad_mod │ ├── D_7343-31R.kicad_mod │ ├── HC49US.kicad_mod │ ├── LED-1206.kicad_mod │ ├── OSHW-LOGO-S.kicad_mod │ ├── PTC-1206.kicad_mod │ ├── SO16L.kicad_mod │ ├── SO18W.kicad_mod │ ├── SOT223.kicad_mod │ ├── TACTILE_SWITCH_SMD.kicad_mod │ ├── TQFP44.kicad_mod │ └── USB-MINIB.kicad_mod ├── Reflow Control Board Rev 2.pro ├── Reflow Control Board Rev 2.sch ├── Reflow_Control_Board_Rev_2-eagle-import.dcm ├── bom │ └── ibom.html ├── fp-lib-table └── sym-lib-table ├── LICENSE ├── README.md ├── code ├── README.md ├── button_test │ └── button_test.ino ├── dump_code │ └── dump_eeprom.ino ├── open-vapors │ ├── EEPROM.ino │ ├── ble_adapter.h │ ├── ble_adapter.ino │ ├── menu-Manual.ino │ ├── menu-NumberEditing.ino │ ├── menu-Settings.ino │ ├── menu-common.ino │ ├── menu-currentStatus.ino │ ├── menu-homeScreen.ino │ ├── menu-reflowProfile.ino │ ├── open-vapors.h │ ├── open-vapors.ino │ ├── reflow-ovencontroller.h │ ├── reflow-ovencontroller.ino │ ├── reflow-rtc-ds3231.h │ ├── reflow-thermalcouple.h │ └── reflow-thermalcouple.ino └── reflow_eeprom_prep │ ├── prep_eeprom.ino.leonardo.hex │ ├── prep_eeprom.ino.with_bootloader.leonardo.hex │ └── reflow_eeprom_prep.ino ├── enclosure ├── box-autocad-inventor │ ├── Bottom Panel.ipt │ ├── Box Back.ipt │ ├── Box Bottom.ipt │ ├── Box Building Notes.txt │ ├── Box Front.ipt │ ├── Box Side Panel.ipt │ ├── Box Top.ipt │ ├── Front Panel.ipt │ ├── Reflow Oven Assembly.iam │ └── open reflow box.ipt ├── box-faces-illustrator │ ├── ._side panel A r3v2b.ai │ ├── ._top panel r3v1.ai │ ├── Engraved Panels.ai │ ├── Front Face r3v1.ai │ ├── Rear Face r3v2.ai │ ├── bottom panel r3v2.ai │ ├── side panel - slot and hole only.ai │ ├── side panel A r3v2b.ai │ ├── side panel B r3v2b.ai │ ├── side panel r3v2b.ai │ └── top panel r3v1.ai └── spaces-3d-printed │ ├── Controller Board │ └── cntrl-space-partA.ipt │ ├── Keypad Board │ ├── Keypad.ai │ ├── keyboard_space_cad.ipt │ ├── keyboard_space_cad.stl │ ├── keyboard_space_cad2.stl │ ├── keyboard_space_cad3.stl │ └── keypad_spacer.dxf │ ├── Open Vapors Spacers.zip │ ├── lcd │ ├── lcd spacer for dxf.ai │ ├── lcd spacer for dxf.dxf │ ├── lcd spacer.ai │ ├── lcd-spacer-model.ipt │ └── lcd-v1.stl │ ├── spi backpack │ ├── spi backpack model.ipt │ ├── spi backpack v1.stl │ └── spi backpack.ai │ └── thermo-board │ ├── max38155.ai │ ├── thermo-model.ipt │ └── thermo-v1.stl ├── images ├── 6675571493180764312.jpg └── Reflow Control Board Rev 2 3d render.jpg └── original electronics - EAGLE ├── controller - EAGLE ├── Rev1 │ ├── Reflow Control Board.brd │ └── Reflow Control Board.sch └── Rev2 │ ├── Reflow Control Board Rev 2.brd │ └── Reflow Control Board Rev 2.sch └── keypad - EAGLE └── Rev 2 ├── Keypad.brd └── Keypad.sch /KiCad/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/.gitignore -------------------------------------------------------------------------------- /KiCad/Printing Print Schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Printing Print Schematic.pdf -------------------------------------------------------------------------------- /KiCad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/README.md -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2-rescue.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.kicad_pcb -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/0805.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/0805.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/1206.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/1206.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/1X02_LOCK.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/1X02_LOCK.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/1X03_LOCK.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/1X03_LOCK.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/2X4.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/2X4.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/AVRISP.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/AVRISP.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/BATTCON_12MM.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/BATTCON_12MM.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/D_7343-31R.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/D_7343-31R.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/HC49US.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/HC49US.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/LED-1206.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/LED-1206.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/OSHW-LOGO-S.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/OSHW-LOGO-S.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/PTC-1206.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/PTC-1206.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/SO16L.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/SO16L.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/SO18W.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/SO18W.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/SOT223.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/SOT223.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/TACTILE_SWITCH_SMD.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/TACTILE_SWITCH_SMD.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/TQFP44.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/TQFP44.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pretty/USB-MINIB.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pretty/USB-MINIB.kicad_mod -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.pro -------------------------------------------------------------------------------- /KiCad/Reflow Control Board Rev 2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/Reflow Control Board Rev 2.sch -------------------------------------------------------------------------------- /KiCad/Reflow_Control_Board_Rev_2-eagle-import.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /KiCad/bom/ibom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/bom/ibom.html -------------------------------------------------------------------------------- /KiCad/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/fp-lib-table -------------------------------------------------------------------------------- /KiCad/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/KiCad/sym-lib-table -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/README.md -------------------------------------------------------------------------------- /code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/README.md -------------------------------------------------------------------------------- /code/button_test/button_test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/button_test/button_test.ino -------------------------------------------------------------------------------- /code/dump_code/dump_eeprom.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/dump_code/dump_eeprom.ino -------------------------------------------------------------------------------- /code/open-vapors/EEPROM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/EEPROM.ino -------------------------------------------------------------------------------- /code/open-vapors/ble_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/ble_adapter.h -------------------------------------------------------------------------------- /code/open-vapors/ble_adapter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/ble_adapter.ino -------------------------------------------------------------------------------- /code/open-vapors/menu-Manual.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/menu-Manual.ino -------------------------------------------------------------------------------- /code/open-vapors/menu-NumberEditing.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/menu-NumberEditing.ino -------------------------------------------------------------------------------- /code/open-vapors/menu-Settings.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/menu-Settings.ino -------------------------------------------------------------------------------- /code/open-vapors/menu-common.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/menu-common.ino -------------------------------------------------------------------------------- /code/open-vapors/menu-currentStatus.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/menu-currentStatus.ino -------------------------------------------------------------------------------- /code/open-vapors/menu-homeScreen.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/menu-homeScreen.ino -------------------------------------------------------------------------------- /code/open-vapors/menu-reflowProfile.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/menu-reflowProfile.ino -------------------------------------------------------------------------------- /code/open-vapors/open-vapors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/open-vapors.h -------------------------------------------------------------------------------- /code/open-vapors/open-vapors.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/open-vapors.ino -------------------------------------------------------------------------------- /code/open-vapors/reflow-ovencontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/reflow-ovencontroller.h -------------------------------------------------------------------------------- /code/open-vapors/reflow-ovencontroller.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/reflow-ovencontroller.ino -------------------------------------------------------------------------------- /code/open-vapors/reflow-rtc-ds3231.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/reflow-rtc-ds3231.h -------------------------------------------------------------------------------- /code/open-vapors/reflow-thermalcouple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/reflow-thermalcouple.h -------------------------------------------------------------------------------- /code/open-vapors/reflow-thermalcouple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/open-vapors/reflow-thermalcouple.ino -------------------------------------------------------------------------------- /code/reflow_eeprom_prep/prep_eeprom.ino.leonardo.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/reflow_eeprom_prep/prep_eeprom.ino.leonardo.hex -------------------------------------------------------------------------------- /code/reflow_eeprom_prep/prep_eeprom.ino.with_bootloader.leonardo.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/reflow_eeprom_prep/prep_eeprom.ino.with_bootloader.leonardo.hex -------------------------------------------------------------------------------- /code/reflow_eeprom_prep/reflow_eeprom_prep.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/code/reflow_eeprom_prep/reflow_eeprom_prep.ino -------------------------------------------------------------------------------- /enclosure/box-autocad-inventor/Bottom Panel.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-autocad-inventor/Bottom Panel.ipt -------------------------------------------------------------------------------- /enclosure/box-autocad-inventor/Box Back.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-autocad-inventor/Box Back.ipt -------------------------------------------------------------------------------- /enclosure/box-autocad-inventor/Box Bottom.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-autocad-inventor/Box Bottom.ipt -------------------------------------------------------------------------------- /enclosure/box-autocad-inventor/Box Building Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-autocad-inventor/Box Building Notes.txt -------------------------------------------------------------------------------- /enclosure/box-autocad-inventor/Box Front.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-autocad-inventor/Box Front.ipt -------------------------------------------------------------------------------- /enclosure/box-autocad-inventor/Box Side Panel.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-autocad-inventor/Box Side Panel.ipt -------------------------------------------------------------------------------- /enclosure/box-autocad-inventor/Box Top.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-autocad-inventor/Box Top.ipt -------------------------------------------------------------------------------- /enclosure/box-autocad-inventor/Front Panel.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-autocad-inventor/Front Panel.ipt -------------------------------------------------------------------------------- /enclosure/box-autocad-inventor/Reflow Oven Assembly.iam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-autocad-inventor/Reflow Oven Assembly.iam -------------------------------------------------------------------------------- /enclosure/box-autocad-inventor/open reflow box.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-autocad-inventor/open reflow box.ipt -------------------------------------------------------------------------------- /enclosure/box-faces-illustrator/._side panel A r3v2b.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-faces-illustrator/._side panel A r3v2b.ai -------------------------------------------------------------------------------- /enclosure/box-faces-illustrator/._top panel r3v1.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-faces-illustrator/._top panel r3v1.ai -------------------------------------------------------------------------------- /enclosure/box-faces-illustrator/Engraved Panels.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-faces-illustrator/Engraved Panels.ai -------------------------------------------------------------------------------- /enclosure/box-faces-illustrator/Front Face r3v1.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-faces-illustrator/Front Face r3v1.ai -------------------------------------------------------------------------------- /enclosure/box-faces-illustrator/Rear Face r3v2.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-faces-illustrator/Rear Face r3v2.ai -------------------------------------------------------------------------------- /enclosure/box-faces-illustrator/bottom panel r3v2.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-faces-illustrator/bottom panel r3v2.ai -------------------------------------------------------------------------------- /enclosure/box-faces-illustrator/side panel - slot and hole only.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-faces-illustrator/side panel - slot and hole only.ai -------------------------------------------------------------------------------- /enclosure/box-faces-illustrator/side panel A r3v2b.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-faces-illustrator/side panel A r3v2b.ai -------------------------------------------------------------------------------- /enclosure/box-faces-illustrator/side panel B r3v2b.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-faces-illustrator/side panel B r3v2b.ai -------------------------------------------------------------------------------- /enclosure/box-faces-illustrator/side panel r3v2b.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-faces-illustrator/side panel r3v2b.ai -------------------------------------------------------------------------------- /enclosure/box-faces-illustrator/top panel r3v1.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/box-faces-illustrator/top panel r3v1.ai -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/Controller Board/cntrl-space-partA.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/Controller Board/cntrl-space-partA.ipt -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/Keypad Board/Keypad.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/Keypad Board/Keypad.ai -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/Keypad Board/keyboard_space_cad.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/Keypad Board/keyboard_space_cad.ipt -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/Keypad Board/keyboard_space_cad.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/Keypad Board/keyboard_space_cad.stl -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/Keypad Board/keyboard_space_cad2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/Keypad Board/keyboard_space_cad2.stl -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/Keypad Board/keyboard_space_cad3.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/Keypad Board/keyboard_space_cad3.stl -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/Keypad Board/keypad_spacer.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/Keypad Board/keypad_spacer.dxf -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/Open Vapors Spacers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/Open Vapors Spacers.zip -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/lcd/lcd spacer for dxf.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/lcd/lcd spacer for dxf.ai -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/lcd/lcd spacer for dxf.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/lcd/lcd spacer for dxf.dxf -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/lcd/lcd spacer.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/lcd/lcd spacer.ai -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/lcd/lcd-spacer-model.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/lcd/lcd-spacer-model.ipt -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/lcd/lcd-v1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/lcd/lcd-v1.stl -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/spi backpack/spi backpack model.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/spi backpack/spi backpack model.ipt -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/spi backpack/spi backpack v1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/spi backpack/spi backpack v1.stl -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/spi backpack/spi backpack.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/spi backpack/spi backpack.ai -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/thermo-board/max38155.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/thermo-board/max38155.ai -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/thermo-board/thermo-model.ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/thermo-board/thermo-model.ipt -------------------------------------------------------------------------------- /enclosure/spaces-3d-printed/thermo-board/thermo-v1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/enclosure/spaces-3d-printed/thermo-board/thermo-v1.stl -------------------------------------------------------------------------------- /images/6675571493180764312.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/images/6675571493180764312.jpg -------------------------------------------------------------------------------- /images/Reflow Control Board Rev 2 3d render.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/images/Reflow Control Board Rev 2 3d render.jpg -------------------------------------------------------------------------------- /original electronics - EAGLE/controller - EAGLE/Rev1/Reflow Control Board.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/original electronics - EAGLE/controller - EAGLE/Rev1/Reflow Control Board.brd -------------------------------------------------------------------------------- /original electronics - EAGLE/controller - EAGLE/Rev1/Reflow Control Board.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/original electronics - EAGLE/controller - EAGLE/Rev1/Reflow Control Board.sch -------------------------------------------------------------------------------- /original electronics - EAGLE/controller - EAGLE/Rev2/Reflow Control Board Rev 2.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/original electronics - EAGLE/controller - EAGLE/Rev2/Reflow Control Board Rev 2.brd -------------------------------------------------------------------------------- /original electronics - EAGLE/controller - EAGLE/Rev2/Reflow Control Board Rev 2.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/original electronics - EAGLE/controller - EAGLE/Rev2/Reflow Control Board Rev 2.sch -------------------------------------------------------------------------------- /original electronics - EAGLE/keypad - EAGLE/Rev 2/Keypad.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/original electronics - EAGLE/keypad - EAGLE/Rev 2/Keypad.brd -------------------------------------------------------------------------------- /original electronics - EAGLE/keypad - EAGLE/Rev 2/Keypad.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baldengineer/Open-Vapors/HEAD/original electronics - EAGLE/keypad - EAGLE/Rev 2/Keypad.sch --------------------------------------------------------------------------------