├── .gitignore ├── Documentation ├── ReflowOven.fzz ├── ReflowOven.jpg ├── ReflowOven_Control.jpg ├── ReflowOven_Inside.jpg └── ReflowOven_Steckplatine.png ├── LICENSE ├── README.md └── src ├── Libraries ├── Adafruit_GFX_Library_master │ ├── Adafruit_GFX.cpp │ ├── Adafruit_GFX.h │ ├── Fonts │ │ ├── FreeMono12pt7b.h │ │ ├── FreeMono18pt7b.h │ │ ├── FreeMono24pt7b.h │ │ ├── FreeMono9pt7b.h │ │ ├── FreeMonoBold12pt7b.h │ │ ├── FreeMonoBold18pt7b.h │ │ ├── FreeMonoBold24pt7b.h │ │ ├── FreeMonoBold9pt7b.h │ │ ├── FreeMonoBoldOblique12pt7b.h │ │ ├── FreeMonoBoldOblique18pt7b.h │ │ ├── FreeMonoBoldOblique24pt7b.h │ │ ├── FreeMonoBoldOblique9pt7b.h │ │ ├── FreeMonoOblique12pt7b.h │ │ ├── FreeMonoOblique18pt7b.h │ │ ├── FreeMonoOblique24pt7b.h │ │ ├── FreeMonoOblique9pt7b.h │ │ ├── FreeSans12pt7b.h │ │ ├── FreeSans18pt7b.h │ │ ├── FreeSans24pt7b.h │ │ ├── FreeSans9pt7b.h │ │ ├── FreeSansBold12pt7b.h │ │ ├── FreeSansBold18pt7b.h │ │ ├── FreeSansBold24pt7b.h │ │ ├── FreeSansBold9pt7b.h │ │ ├── FreeSansBoldOblique12pt7b.h │ │ ├── FreeSansBoldOblique18pt7b.h │ │ ├── FreeSansBoldOblique24pt7b.h │ │ ├── FreeSansBoldOblique9pt7b.h │ │ ├── FreeSansOblique12pt7b.h │ │ ├── FreeSansOblique18pt7b.h │ │ ├── FreeSansOblique24pt7b.h │ │ ├── FreeSansOblique9pt7b.h │ │ ├── FreeSerif12pt7b.h │ │ ├── FreeSerif18pt7b.h │ │ ├── FreeSerif24pt7b.h │ │ ├── FreeSerif9pt7b.h │ │ ├── FreeSerifBold12pt7b.h │ │ ├── FreeSerifBold18pt7b.h │ │ ├── FreeSerifBold24pt7b.h │ │ ├── FreeSerifBold9pt7b.h │ │ ├── FreeSerifBoldItalic12pt7b.h │ │ ├── FreeSerifBoldItalic18pt7b.h │ │ ├── FreeSerifBoldItalic24pt7b.h │ │ ├── FreeSerifBoldItalic9pt7b.h │ │ ├── FreeSerifItalic12pt7b.h │ │ ├── FreeSerifItalic18pt7b.h │ │ ├── FreeSerifItalic24pt7b.h │ │ ├── FreeSerifItalic9pt7b.h │ │ └── TomThumb.h │ ├── README.md │ ├── fontconvert │ │ ├── Makefile │ │ ├── fontconvert.c │ │ └── makefonts.sh │ ├── gfxfont.h │ ├── glcdfont.c │ ├── library.properties │ └── license.txt ├── MAX6675_library_master │ ├── examples │ │ ├── lcdthermocouple │ │ │ └── lcdthermocouple.pde │ │ └── serialthermocouple │ │ │ └── serialthermocouple.pde │ ├── keywords.txt │ ├── library.properties │ ├── max6675.cpp │ └── max6675.h ├── SWTFT_Shield │ ├── SWTFT.cpp │ ├── SWTFT.h │ ├── bitmaps │ │ ├── miniwoof.bmp │ │ ├── test.bmp │ │ └── woof.bmp │ ├── examples │ │ ├── graphicstest │ │ │ └── graphicstest.pde │ │ ├── rotationtest │ │ │ └── rotationtest.pde │ │ ├── tftbmp │ │ │ └── tftbmp.pde │ │ └── tftpaint │ │ │ └── tftpaint.ino │ ├── mega_24_shield.h │ └── uno_24_shield.h ├── TimerOne-r11.zip └── Touch_Screen_Library_master │ ├── README.txt │ ├── TouchScreen.cpp │ ├── TouchScreen.h │ └── examples │ ├── touchscreendemo │ └── touchscreendemo.pde │ └── touchscreendemoshield │ └── touchscreendemoshield.ino └── ReflowOven ├── Display.cpp ├── Display.h ├── EepromHandler.cpp ├── EepromHandler.h ├── ProcessState.h ├── ReflowOven.h ├── ReflowOven.ino ├── ReflowOven.sln ├── ReflowOven.vcxproj ├── ReflowOven.vcxproj.filters ├── SWTFT.cpp ├── SWTFT.h ├── Setpoints.h ├── TouchButton.cpp ├── TouchButton.h └── uno_24_shield.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/ReflowOven.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/Documentation/ReflowOven.fzz -------------------------------------------------------------------------------- /Documentation/ReflowOven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/Documentation/ReflowOven.jpg -------------------------------------------------------------------------------- /Documentation/ReflowOven_Control.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/Documentation/ReflowOven_Control.jpg -------------------------------------------------------------------------------- /Documentation/ReflowOven_Inside.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/Documentation/ReflowOven_Inside.jpg -------------------------------------------------------------------------------- /Documentation/ReflowOven_Steckplatine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/Documentation/ReflowOven_Steckplatine.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/README.md -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Adafruit_GFX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Adafruit_GFX.cpp -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Adafruit_GFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Adafruit_GFX.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMono12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMono12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMono18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMono18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMono24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMono24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMono9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMono9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBold12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBold18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBold24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBold9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBoldOblique12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBoldOblique18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBoldOblique24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoBoldOblique9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoOblique12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoOblique18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoOblique24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeMonoOblique9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSans12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSans12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSans18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSans18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSans24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSans24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSans9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSans9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBold12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBold18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBold24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBold9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBoldOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBoldOblique12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBoldOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBoldOblique18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBoldOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBoldOblique24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBoldOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansBoldOblique9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansOblique12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansOblique12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansOblique18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansOblique18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansOblique24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansOblique24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansOblique9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSansOblique9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerif12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerif12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerif18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerif18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerif24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerif24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerif9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerif9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBold12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBold12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBold18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBold18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBold24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBold24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBold9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBold9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBoldItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBoldItalic12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBoldItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBoldItalic18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBoldItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBoldItalic24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBoldItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifBoldItalic9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifItalic12pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifItalic12pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifItalic18pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifItalic18pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifItalic24pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifItalic24pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifItalic9pt7b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/FreeSerifItalic9pt7b.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/Fonts/TomThumb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/Fonts/TomThumb.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/README.md -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/fontconvert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/fontconvert/Makefile -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/fontconvert/fontconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/fontconvert/fontconvert.c -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/fontconvert/makefonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/fontconvert/makefonts.sh -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/gfxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/gfxfont.h -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/glcdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/glcdfont.c -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/library.properties -------------------------------------------------------------------------------- /src/Libraries/Adafruit_GFX_Library_master/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Adafruit_GFX_Library_master/license.txt -------------------------------------------------------------------------------- /src/Libraries/MAX6675_library_master/examples/lcdthermocouple/lcdthermocouple.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/MAX6675_library_master/examples/lcdthermocouple/lcdthermocouple.pde -------------------------------------------------------------------------------- /src/Libraries/MAX6675_library_master/examples/serialthermocouple/serialthermocouple.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/MAX6675_library_master/examples/serialthermocouple/serialthermocouple.pde -------------------------------------------------------------------------------- /src/Libraries/MAX6675_library_master/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/MAX6675_library_master/keywords.txt -------------------------------------------------------------------------------- /src/Libraries/MAX6675_library_master/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/MAX6675_library_master/library.properties -------------------------------------------------------------------------------- /src/Libraries/MAX6675_library_master/max6675.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/MAX6675_library_master/max6675.cpp -------------------------------------------------------------------------------- /src/Libraries/MAX6675_library_master/max6675.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/MAX6675_library_master/max6675.h -------------------------------------------------------------------------------- /src/Libraries/SWTFT_Shield/SWTFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/SWTFT_Shield/SWTFT.cpp -------------------------------------------------------------------------------- /src/Libraries/SWTFT_Shield/SWTFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/SWTFT_Shield/SWTFT.h -------------------------------------------------------------------------------- /src/Libraries/SWTFT_Shield/bitmaps/miniwoof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/SWTFT_Shield/bitmaps/miniwoof.bmp -------------------------------------------------------------------------------- /src/Libraries/SWTFT_Shield/bitmaps/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/SWTFT_Shield/bitmaps/test.bmp -------------------------------------------------------------------------------- /src/Libraries/SWTFT_Shield/bitmaps/woof.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/SWTFT_Shield/bitmaps/woof.bmp -------------------------------------------------------------------------------- /src/Libraries/SWTFT_Shield/examples/graphicstest/graphicstest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/SWTFT_Shield/examples/graphicstest/graphicstest.pde -------------------------------------------------------------------------------- /src/Libraries/SWTFT_Shield/examples/rotationtest/rotationtest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/SWTFT_Shield/examples/rotationtest/rotationtest.pde -------------------------------------------------------------------------------- /src/Libraries/SWTFT_Shield/examples/tftbmp/tftbmp.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/SWTFT_Shield/examples/tftbmp/tftbmp.pde -------------------------------------------------------------------------------- /src/Libraries/SWTFT_Shield/examples/tftpaint/tftpaint.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/SWTFT_Shield/examples/tftpaint/tftpaint.ino -------------------------------------------------------------------------------- /src/Libraries/SWTFT_Shield/mega_24_shield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/SWTFT_Shield/mega_24_shield.h -------------------------------------------------------------------------------- /src/Libraries/SWTFT_Shield/uno_24_shield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/SWTFT_Shield/uno_24_shield.h -------------------------------------------------------------------------------- /src/Libraries/TimerOne-r11.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/TimerOne-r11.zip -------------------------------------------------------------------------------- /src/Libraries/Touch_Screen_Library_master/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Touch_Screen_Library_master/README.txt -------------------------------------------------------------------------------- /src/Libraries/Touch_Screen_Library_master/TouchScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Touch_Screen_Library_master/TouchScreen.cpp -------------------------------------------------------------------------------- /src/Libraries/Touch_Screen_Library_master/TouchScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Touch_Screen_Library_master/TouchScreen.h -------------------------------------------------------------------------------- /src/Libraries/Touch_Screen_Library_master/examples/touchscreendemo/touchscreendemo.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Touch_Screen_Library_master/examples/touchscreendemo/touchscreendemo.pde -------------------------------------------------------------------------------- /src/Libraries/Touch_Screen_Library_master/examples/touchscreendemoshield/touchscreendemoshield.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/Libraries/Touch_Screen_Library_master/examples/touchscreendemoshield/touchscreendemoshield.ino -------------------------------------------------------------------------------- /src/ReflowOven/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/Display.cpp -------------------------------------------------------------------------------- /src/ReflowOven/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/Display.h -------------------------------------------------------------------------------- /src/ReflowOven/EepromHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/EepromHandler.cpp -------------------------------------------------------------------------------- /src/ReflowOven/EepromHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/EepromHandler.h -------------------------------------------------------------------------------- /src/ReflowOven/ProcessState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/ProcessState.h -------------------------------------------------------------------------------- /src/ReflowOven/ReflowOven.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/ReflowOven.h -------------------------------------------------------------------------------- /src/ReflowOven/ReflowOven.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/ReflowOven.ino -------------------------------------------------------------------------------- /src/ReflowOven/ReflowOven.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/ReflowOven.sln -------------------------------------------------------------------------------- /src/ReflowOven/ReflowOven.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/ReflowOven.vcxproj -------------------------------------------------------------------------------- /src/ReflowOven/ReflowOven.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/ReflowOven.vcxproj.filters -------------------------------------------------------------------------------- /src/ReflowOven/SWTFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/SWTFT.cpp -------------------------------------------------------------------------------- /src/ReflowOven/SWTFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/SWTFT.h -------------------------------------------------------------------------------- /src/ReflowOven/Setpoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/Setpoints.h -------------------------------------------------------------------------------- /src/ReflowOven/TouchButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/TouchButton.cpp -------------------------------------------------------------------------------- /src/ReflowOven/TouchButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/TouchButton.h -------------------------------------------------------------------------------- /src/ReflowOven/uno_24_shield.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafmar/Arduino-Reflow-Oven/HEAD/src/ReflowOven/uno_24_shield.h --------------------------------------------------------------------------------