├── EngineController └── EngineController.ino ├── EngineMath ├── EngineMath.cpp ├── EngineMath.h ├── EngineMath.ino └── keywords.txt ├── LICENSE.txt ├── LoadCell ├── LoadCell.cpp ├── LoadCell.h ├── LoadCell.ino └── keywords.txt ├── MAX31855 ├── Adafruit_MAX31855.cpp ├── Adafruit_MAX31855.h ├── README.txt ├── examples │ ├── lcdthermocouple │ │ └── LCDthermocouple.pde │ └── serialthermocouple │ │ └── serialthermocouple.pde ├── keywords.txt └── license.txt ├── PMCtrl ├── PMCtrl.cpp ├── PMCtrl.h ├── examples │ └── PMCtrl │ │ └── PMCtrl.ino └── keywords.txt ├── README.md ├── SoftwareSerial ├── SoftwareSerial.cpp ├── SoftwareSerial.h ├── examples │ ├── SoftwareSerialExample │ │ └── SoftwareSerialExample.ino │ └── TwoPortReceive │ │ └── TwoPortReceive.ino └── keywords.txt ├── StopWatch ├── StopWatch.cpp ├── StopWatch.h ├── StopWatch.ino └── keywords.txt ├── ThermoTemp ├── ThermoSensor.ino ├── ThermoTemp.cpp ├── ThermoTemp.h └── keywords.txt └── Transducer ├── PressureTransducer.ino ├── Transducer.cpp ├── Transducer.h └── keywords.txt /EngineController/EngineController.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/EngineController/EngineController.ino -------------------------------------------------------------------------------- /EngineMath/EngineMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/EngineMath/EngineMath.cpp -------------------------------------------------------------------------------- /EngineMath/EngineMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/EngineMath/EngineMath.h -------------------------------------------------------------------------------- /EngineMath/EngineMath.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/EngineMath/EngineMath.ino -------------------------------------------------------------------------------- /EngineMath/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/EngineMath/keywords.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LoadCell/LoadCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/LoadCell/LoadCell.cpp -------------------------------------------------------------------------------- /LoadCell/LoadCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/LoadCell/LoadCell.h -------------------------------------------------------------------------------- /LoadCell/LoadCell.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/LoadCell/LoadCell.ino -------------------------------------------------------------------------------- /LoadCell/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/LoadCell/keywords.txt -------------------------------------------------------------------------------- /MAX31855/Adafruit_MAX31855.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/MAX31855/Adafruit_MAX31855.cpp -------------------------------------------------------------------------------- /MAX31855/Adafruit_MAX31855.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/MAX31855/Adafruit_MAX31855.h -------------------------------------------------------------------------------- /MAX31855/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/MAX31855/README.txt -------------------------------------------------------------------------------- /MAX31855/examples/lcdthermocouple/LCDthermocouple.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/MAX31855/examples/lcdthermocouple/LCDthermocouple.pde -------------------------------------------------------------------------------- /MAX31855/examples/serialthermocouple/serialthermocouple.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/MAX31855/examples/serialthermocouple/serialthermocouple.pde -------------------------------------------------------------------------------- /MAX31855/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/MAX31855/keywords.txt -------------------------------------------------------------------------------- /MAX31855/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/MAX31855/license.txt -------------------------------------------------------------------------------- /PMCtrl/PMCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/PMCtrl/PMCtrl.cpp -------------------------------------------------------------------------------- /PMCtrl/PMCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/PMCtrl/PMCtrl.h -------------------------------------------------------------------------------- /PMCtrl/examples/PMCtrl/PMCtrl.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/PMCtrl/examples/PMCtrl/PMCtrl.ino -------------------------------------------------------------------------------- /PMCtrl/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/PMCtrl/keywords.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/README.md -------------------------------------------------------------------------------- /SoftwareSerial/SoftwareSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/SoftwareSerial/SoftwareSerial.cpp -------------------------------------------------------------------------------- /SoftwareSerial/SoftwareSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/SoftwareSerial/SoftwareSerial.h -------------------------------------------------------------------------------- /SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino -------------------------------------------------------------------------------- /SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino -------------------------------------------------------------------------------- /SoftwareSerial/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/SoftwareSerial/keywords.txt -------------------------------------------------------------------------------- /StopWatch/StopWatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/StopWatch/StopWatch.cpp -------------------------------------------------------------------------------- /StopWatch/StopWatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/StopWatch/StopWatch.h -------------------------------------------------------------------------------- /StopWatch/StopWatch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/StopWatch/StopWatch.ino -------------------------------------------------------------------------------- /StopWatch/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/StopWatch/keywords.txt -------------------------------------------------------------------------------- /ThermoTemp/ThermoSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/ThermoTemp/ThermoSensor.ino -------------------------------------------------------------------------------- /ThermoTemp/ThermoTemp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/ThermoTemp/ThermoTemp.cpp -------------------------------------------------------------------------------- /ThermoTemp/ThermoTemp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/ThermoTemp/ThermoTemp.h -------------------------------------------------------------------------------- /ThermoTemp/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/ThermoTemp/keywords.txt -------------------------------------------------------------------------------- /Transducer/PressureTransducer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/Transducer/PressureTransducer.ino -------------------------------------------------------------------------------- /Transducer/Transducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/Transducer/Transducer.cpp -------------------------------------------------------------------------------- /Transducer/Transducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/Transducer/Transducer.h -------------------------------------------------------------------------------- /Transducer/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gNSortino/Arduino-Liquid-Engine-Software/HEAD/Transducer/keywords.txt --------------------------------------------------------------------------------