├── .gitignore ├── README.md ├── firmware ├── .cproject ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.cdt.managedbuilder.core.prefs ├── SConstruct ├── build │ ├── awreflow.elf │ ├── awreflow.hex │ ├── awreflow.lst │ └── awreflow.map ├── include │ ├── Application.h │ ├── AxisNumberWriter.h │ ├── BlueIntegerWriter.h │ ├── Buttons.h │ ├── ControlPage.h │ ├── Flash.h │ ├── FlashGraphics.h │ ├── FlashInfo.h │ ├── IntegerNumberWriter.h │ ├── LeadFreeReflowProfile.h │ ├── LeadedReflowProfile.h │ ├── Main.h │ ├── Max31855TemperatureReader.h │ ├── Max6675TemperatureReader.h │ ├── NumberWriter.h │ ├── PageBase.h │ ├── Panel.h │ ├── Pid.h │ ├── ProfileType.h │ ├── Reflow.h │ ├── ReflowPage.h │ ├── ReflowParameters.h │ ├── ReflowParametersStorage.h │ ├── ReflowProfile.h │ ├── SplashScreen.h │ ├── TemperatureNumbers.h │ ├── TemperatureReader.h │ ├── TemperatureWriter.h │ └── UiButton.h ├── mkflashinfo.pl ├── src │ ├── AxisNumberWriter.cpp │ ├── BlueIntegerWriter.cpp │ ├── Buttons.cpp │ ├── ControlPage.cpp │ ├── Flash.cpp │ ├── FlashGraphics.cpp │ ├── IntegerNumberWriter.cpp │ ├── LeadFreeReflowProfile.cpp │ ├── LeadedReflowProfile.cpp │ ├── Main.cpp │ ├── Max31855TemperatureReader.cpp │ ├── Max6675TemperatureReader.cpp │ ├── NumberWriter.cpp │ ├── PageBase.cpp │ ├── Panel.cpp │ ├── Pid.cpp │ ├── Reflow.cpp │ ├── ReflowPage.cpp │ ├── ReflowParametersStorage.cpp │ ├── SplashScreen.cpp │ ├── TemperatureNumbers.cpp │ └── TemperatureWriter.cpp ├── system │ ├── LibraryHacks.cpp │ └── f051 │ │ ├── Linker.ld │ │ ├── Startup.asm │ │ └── System.c └── ux │ ├── 0_black.png │ ├── 0_black.tif │ ├── 0_blue.png │ ├── 0_blue.tif │ ├── 0_grey.png │ ├── 0_grey.tif │ ├── 0_orange_purple.png │ ├── 0_orange_purple.tif │ ├── 0_purple.png │ ├── 0_purple.tif │ ├── 1_black.png │ ├── 1_black.tif │ ├── 1_blue.png │ ├── 1_blue.tif │ ├── 1_grey.png │ ├── 1_grey.tif │ ├── 1_orange_purple.png │ ├── 1_orange_purple.tif │ ├── 1_purple.png │ ├── 1_purple.tif │ ├── 2_black.png │ ├── 2_black.tif │ ├── 2_blue.png │ ├── 2_blue.tif │ ├── 2_grey.png │ ├── 2_grey.tif │ ├── 2_orange_purple.png │ ├── 2_orange_purple.tif │ ├── 2_purple.png │ ├── 2_purple.tif │ ├── 3_black.png │ ├── 3_black.tif │ ├── 3_blue.png │ ├── 3_blue.tif │ ├── 3_grey.png │ ├── 3_grey.tif │ ├── 3_orange_purple.png │ ├── 3_orange_purple.tif │ ├── 3_purple.png │ ├── 3_purple.tif │ ├── 4_black.png │ ├── 4_black.tif │ ├── 4_blue.png │ ├── 4_blue.tif │ ├── 4_grey.png │ ├── 4_grey.tif │ ├── 4_orange_purple.png │ ├── 4_orange_purple.tif │ ├── 4_purple.png │ ├── 4_purple.tif │ ├── 5_black.png │ ├── 5_black.tif │ ├── 5_blue.png │ ├── 5_blue.tif │ ├── 5_grey.png │ ├── 5_grey.tif │ ├── 5_orange_purple.png │ ├── 5_orange_purple.tif │ ├── 5_purple.png │ ├── 5_purple.tif │ ├── 6_black.png │ ├── 6_black.tif │ ├── 6_blue.png │ ├── 6_blue.tif │ ├── 6_grey.png │ ├── 6_grey.tif │ ├── 6_orange_purple.png │ ├── 6_orange_purple.tif │ ├── 6_purple.png │ ├── 6_purple.tif │ ├── 7_black.png │ ├── 7_black.tif │ ├── 7_blue.png │ ├── 7_blue.tif │ ├── 7_grey.png │ ├── 7_grey.tif │ ├── 7_orange_purple.png │ ├── 7_orange_purple.tif │ ├── 7_purple.png │ ├── 7_purple.tif │ ├── 8_black.png │ ├── 8_black.tif │ ├── 8_blue.png │ ├── 8_blue.tif │ ├── 8_grey.png │ ├── 8_grey.tif │ ├── 8_orange_purple.png │ ├── 8_orange_purple.tif │ ├── 8_purple.png │ ├── 8_purple.tif │ ├── 9_black.png │ ├── 9_black.tif │ ├── 9_blue.png │ ├── 9_blue.tif │ ├── 9_grey.png │ ├── 9_grey.tif │ ├── 9_orange_purple.png │ ├── 9_orange_purple.tif │ ├── 9_purple.png │ ├── 9_purple.tif │ ├── assets.xlsx │ ├── broken_grey.png │ ├── broken_grey.tif │ ├── broken_purple.png │ ├── broken_purple.tif │ ├── control.png │ ├── control.tif │ ├── convert.sh │ ├── degreesc.png │ ├── degreesc.tif │ ├── degreesc_black.png │ ├── degreesc_black.tif │ ├── degreesc_orange_purple.png │ ├── degreesc_orange_purple.tif │ ├── degreesc_purple.png │ ├── degreesc_purple.tif │ ├── derivative.png │ ├── derivative.tif │ ├── exit.png │ ├── exit.tif │ ├── exit_disabled.png │ ├── exit_disabled.tif │ ├── flame.png │ ├── flame.tif │ ├── integer.png │ ├── integer.tif │ ├── lead.png │ ├── lead.tif │ ├── leadchecked.png │ ├── leadchecked.tif │ ├── leadfree.png │ ├── leadfree.tif │ ├── leadfreechecked.png │ ├── leadfreechecked.tif │ ├── logo │ ├── fire1.jpg │ ├── logo.tif │ ├── logo640x360.tif │ └── paper_texture.jpg │ ├── logo640x360.png │ ├── oven.png │ ├── oven.tif │ ├── pause.png │ ├── pause.tif │ ├── pause_disabled.png │ ├── pause_disabled.tif │ ├── point_blue.png │ ├── point_blue.tif │ ├── proportional.png │ ├── proportional.tif │ ├── reflow.png │ ├── reflow.tif │ ├── reflowControl.tif │ ├── run.tif │ ├── snagcu.png │ ├── snagcu.tif │ ├── snpb.png │ ├── snpb.tif │ ├── spiflash │ ├── 0_black.bin │ ├── 0_blue.bin │ ├── 0_grey.bin │ ├── 0_orange_purple.bin │ ├── 0_purple.bin │ ├── 1_black.bin │ ├── 1_blue.bin │ ├── 1_grey.bin │ ├── 1_orange_purple.bin │ ├── 1_purple.bin │ ├── 2_black.bin │ ├── 2_blue.bin │ ├── 2_grey.bin │ ├── 2_orange_purple.bin │ ├── 2_purple.bin │ ├── 3_black.bin │ ├── 3_blue.bin │ ├── 3_grey.bin │ ├── 3_orange_purple.bin │ ├── 3_purple.bin │ ├── 4_black.bin │ ├── 4_blue.bin │ ├── 4_grey.bin │ ├── 4_orange_purple.bin │ ├── 4_purple.bin │ ├── 5_black.bin │ ├── 5_blue.bin │ ├── 5_grey.bin │ ├── 5_orange_purple.bin │ ├── 5_purple.bin │ ├── 6_black.bin │ ├── 6_blue.bin │ ├── 6_grey.bin │ ├── 6_orange_purple.bin │ ├── 6_purple.bin │ ├── 7_black.bin │ ├── 7_blue.bin │ ├── 7_grey.bin │ ├── 7_orange_purple.bin │ ├── 7_purple.bin │ ├── 8_black.bin │ ├── 8_blue.bin │ ├── 8_grey.bin │ ├── 8_orange_purple.bin │ ├── 8_purple.bin │ ├── 9_black.bin │ ├── 9_blue.bin │ ├── 9_grey.bin │ ├── 9_orange_purple.bin │ ├── 9_purple.bin │ ├── broken_grey.bin │ ├── broken_purple.bin │ ├── control.bin │ ├── degreesc.bin │ ├── degreesc_black.bin │ ├── degreesc_orange_purple.bin │ ├── degreesc_purple.bin │ ├── derivative.bin │ ├── exit.bin │ ├── exit_disabled.bin │ ├── flame.bin │ ├── index.txt │ ├── integer.bin │ ├── lead.bin │ ├── leadchecked.bin │ ├── leadfree.bin │ ├── leadfreechecked.bin │ ├── logo640x360.bin │ ├── oven.bin │ ├── pause.bin │ ├── pause_disabled.bin │ ├── point_blue.bin │ ├── proportional.bin │ ├── reflow.bin │ ├── snagcu.bin │ ├── snpb.bin │ ├── start.bin │ ├── start_disabled.bin │ ├── stop.bin │ ├── stop_disabled.bin │ └── thermometer.bin │ ├── start.png │ ├── start.tif │ ├── start_disabled.png │ ├── start_disabled.tif │ ├── stop.png │ ├── stop.tif │ ├── stop_disabled.png │ ├── stop_disabled.tif │ ├── thermometer.png │ └── thermometer.tif └── simulation ├── .gitignore ├── App.config ├── DoublePid.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Pid.h ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── simulation.csproj └── simulation.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/README.md -------------------------------------------------------------------------------- /firmware/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/.cproject -------------------------------------------------------------------------------- /firmware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/.gitignore -------------------------------------------------------------------------------- /firmware/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/.project -------------------------------------------------------------------------------- /firmware/.settings/org.eclipse.cdt.managedbuilder.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/.settings/org.eclipse.cdt.managedbuilder.core.prefs -------------------------------------------------------------------------------- /firmware/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/SConstruct -------------------------------------------------------------------------------- /firmware/build/awreflow.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/build/awreflow.elf -------------------------------------------------------------------------------- /firmware/build/awreflow.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/build/awreflow.hex -------------------------------------------------------------------------------- /firmware/build/awreflow.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/build/awreflow.lst -------------------------------------------------------------------------------- /firmware/build/awreflow.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/build/awreflow.map -------------------------------------------------------------------------------- /firmware/include/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/Application.h -------------------------------------------------------------------------------- /firmware/include/AxisNumberWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/AxisNumberWriter.h -------------------------------------------------------------------------------- /firmware/include/BlueIntegerWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/BlueIntegerWriter.h -------------------------------------------------------------------------------- /firmware/include/Buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/Buttons.h -------------------------------------------------------------------------------- /firmware/include/ControlPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/ControlPage.h -------------------------------------------------------------------------------- /firmware/include/Flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/Flash.h -------------------------------------------------------------------------------- /firmware/include/FlashGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/FlashGraphics.h -------------------------------------------------------------------------------- /firmware/include/FlashInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/FlashInfo.h -------------------------------------------------------------------------------- /firmware/include/IntegerNumberWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/IntegerNumberWriter.h -------------------------------------------------------------------------------- /firmware/include/LeadFreeReflowProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/LeadFreeReflowProfile.h -------------------------------------------------------------------------------- /firmware/include/LeadedReflowProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/LeadedReflowProfile.h -------------------------------------------------------------------------------- /firmware/include/Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/Main.h -------------------------------------------------------------------------------- /firmware/include/Max31855TemperatureReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/Max31855TemperatureReader.h -------------------------------------------------------------------------------- /firmware/include/Max6675TemperatureReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/Max6675TemperatureReader.h -------------------------------------------------------------------------------- /firmware/include/NumberWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/NumberWriter.h -------------------------------------------------------------------------------- /firmware/include/PageBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/PageBase.h -------------------------------------------------------------------------------- /firmware/include/Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/Panel.h -------------------------------------------------------------------------------- /firmware/include/Pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/Pid.h -------------------------------------------------------------------------------- /firmware/include/ProfileType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/ProfileType.h -------------------------------------------------------------------------------- /firmware/include/Reflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/Reflow.h -------------------------------------------------------------------------------- /firmware/include/ReflowPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/ReflowPage.h -------------------------------------------------------------------------------- /firmware/include/ReflowParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/ReflowParameters.h -------------------------------------------------------------------------------- /firmware/include/ReflowParametersStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/ReflowParametersStorage.h -------------------------------------------------------------------------------- /firmware/include/ReflowProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/ReflowProfile.h -------------------------------------------------------------------------------- /firmware/include/SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/SplashScreen.h -------------------------------------------------------------------------------- /firmware/include/TemperatureNumbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/TemperatureNumbers.h -------------------------------------------------------------------------------- /firmware/include/TemperatureReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/TemperatureReader.h -------------------------------------------------------------------------------- /firmware/include/TemperatureWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/TemperatureWriter.h -------------------------------------------------------------------------------- /firmware/include/UiButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/include/UiButton.h -------------------------------------------------------------------------------- /firmware/mkflashinfo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/mkflashinfo.pl -------------------------------------------------------------------------------- /firmware/src/AxisNumberWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/AxisNumberWriter.cpp -------------------------------------------------------------------------------- /firmware/src/BlueIntegerWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/BlueIntegerWriter.cpp -------------------------------------------------------------------------------- /firmware/src/Buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/Buttons.cpp -------------------------------------------------------------------------------- /firmware/src/ControlPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/ControlPage.cpp -------------------------------------------------------------------------------- /firmware/src/Flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/Flash.cpp -------------------------------------------------------------------------------- /firmware/src/FlashGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/FlashGraphics.cpp -------------------------------------------------------------------------------- /firmware/src/IntegerNumberWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/IntegerNumberWriter.cpp -------------------------------------------------------------------------------- /firmware/src/LeadFreeReflowProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/LeadFreeReflowProfile.cpp -------------------------------------------------------------------------------- /firmware/src/LeadedReflowProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/LeadedReflowProfile.cpp -------------------------------------------------------------------------------- /firmware/src/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/Main.cpp -------------------------------------------------------------------------------- /firmware/src/Max31855TemperatureReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/Max31855TemperatureReader.cpp -------------------------------------------------------------------------------- /firmware/src/Max6675TemperatureReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/Max6675TemperatureReader.cpp -------------------------------------------------------------------------------- /firmware/src/NumberWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/NumberWriter.cpp -------------------------------------------------------------------------------- /firmware/src/PageBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/PageBase.cpp -------------------------------------------------------------------------------- /firmware/src/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/Panel.cpp -------------------------------------------------------------------------------- /firmware/src/Pid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/Pid.cpp -------------------------------------------------------------------------------- /firmware/src/Reflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/Reflow.cpp -------------------------------------------------------------------------------- /firmware/src/ReflowPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/ReflowPage.cpp -------------------------------------------------------------------------------- /firmware/src/ReflowParametersStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/ReflowParametersStorage.cpp -------------------------------------------------------------------------------- /firmware/src/SplashScreen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/SplashScreen.cpp -------------------------------------------------------------------------------- /firmware/src/TemperatureNumbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/TemperatureNumbers.cpp -------------------------------------------------------------------------------- /firmware/src/TemperatureWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/src/TemperatureWriter.cpp -------------------------------------------------------------------------------- /firmware/system/LibraryHacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/system/LibraryHacks.cpp -------------------------------------------------------------------------------- /firmware/system/f051/Linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/system/f051/Linker.ld -------------------------------------------------------------------------------- /firmware/system/f051/Startup.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/system/f051/Startup.asm -------------------------------------------------------------------------------- /firmware/system/f051/System.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/system/f051/System.c -------------------------------------------------------------------------------- /firmware/ux/0_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/0_black.png -------------------------------------------------------------------------------- /firmware/ux/0_black.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/0_black.tif -------------------------------------------------------------------------------- /firmware/ux/0_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/0_blue.png -------------------------------------------------------------------------------- /firmware/ux/0_blue.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/0_blue.tif -------------------------------------------------------------------------------- /firmware/ux/0_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/0_grey.png -------------------------------------------------------------------------------- /firmware/ux/0_grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/0_grey.tif -------------------------------------------------------------------------------- /firmware/ux/0_orange_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/0_orange_purple.png -------------------------------------------------------------------------------- /firmware/ux/0_orange_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/0_orange_purple.tif -------------------------------------------------------------------------------- /firmware/ux/0_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/0_purple.png -------------------------------------------------------------------------------- /firmware/ux/0_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/0_purple.tif -------------------------------------------------------------------------------- /firmware/ux/1_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/1_black.png -------------------------------------------------------------------------------- /firmware/ux/1_black.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/1_black.tif -------------------------------------------------------------------------------- /firmware/ux/1_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/1_blue.png -------------------------------------------------------------------------------- /firmware/ux/1_blue.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/1_blue.tif -------------------------------------------------------------------------------- /firmware/ux/1_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/1_grey.png -------------------------------------------------------------------------------- /firmware/ux/1_grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/1_grey.tif -------------------------------------------------------------------------------- /firmware/ux/1_orange_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/1_orange_purple.png -------------------------------------------------------------------------------- /firmware/ux/1_orange_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/1_orange_purple.tif -------------------------------------------------------------------------------- /firmware/ux/1_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/1_purple.png -------------------------------------------------------------------------------- /firmware/ux/1_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/1_purple.tif -------------------------------------------------------------------------------- /firmware/ux/2_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/2_black.png -------------------------------------------------------------------------------- /firmware/ux/2_black.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/2_black.tif -------------------------------------------------------------------------------- /firmware/ux/2_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/2_blue.png -------------------------------------------------------------------------------- /firmware/ux/2_blue.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/2_blue.tif -------------------------------------------------------------------------------- /firmware/ux/2_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/2_grey.png -------------------------------------------------------------------------------- /firmware/ux/2_grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/2_grey.tif -------------------------------------------------------------------------------- /firmware/ux/2_orange_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/2_orange_purple.png -------------------------------------------------------------------------------- /firmware/ux/2_orange_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/2_orange_purple.tif -------------------------------------------------------------------------------- /firmware/ux/2_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/2_purple.png -------------------------------------------------------------------------------- /firmware/ux/2_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/2_purple.tif -------------------------------------------------------------------------------- /firmware/ux/3_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/3_black.png -------------------------------------------------------------------------------- /firmware/ux/3_black.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/3_black.tif -------------------------------------------------------------------------------- /firmware/ux/3_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/3_blue.png -------------------------------------------------------------------------------- /firmware/ux/3_blue.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/3_blue.tif -------------------------------------------------------------------------------- /firmware/ux/3_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/3_grey.png -------------------------------------------------------------------------------- /firmware/ux/3_grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/3_grey.tif -------------------------------------------------------------------------------- /firmware/ux/3_orange_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/3_orange_purple.png -------------------------------------------------------------------------------- /firmware/ux/3_orange_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/3_orange_purple.tif -------------------------------------------------------------------------------- /firmware/ux/3_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/3_purple.png -------------------------------------------------------------------------------- /firmware/ux/3_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/3_purple.tif -------------------------------------------------------------------------------- /firmware/ux/4_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/4_black.png -------------------------------------------------------------------------------- /firmware/ux/4_black.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/4_black.tif -------------------------------------------------------------------------------- /firmware/ux/4_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/4_blue.png -------------------------------------------------------------------------------- /firmware/ux/4_blue.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/4_blue.tif -------------------------------------------------------------------------------- /firmware/ux/4_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/4_grey.png -------------------------------------------------------------------------------- /firmware/ux/4_grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/4_grey.tif -------------------------------------------------------------------------------- /firmware/ux/4_orange_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/4_orange_purple.png -------------------------------------------------------------------------------- /firmware/ux/4_orange_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/4_orange_purple.tif -------------------------------------------------------------------------------- /firmware/ux/4_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/4_purple.png -------------------------------------------------------------------------------- /firmware/ux/4_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/4_purple.tif -------------------------------------------------------------------------------- /firmware/ux/5_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/5_black.png -------------------------------------------------------------------------------- /firmware/ux/5_black.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/5_black.tif -------------------------------------------------------------------------------- /firmware/ux/5_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/5_blue.png -------------------------------------------------------------------------------- /firmware/ux/5_blue.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/5_blue.tif -------------------------------------------------------------------------------- /firmware/ux/5_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/5_grey.png -------------------------------------------------------------------------------- /firmware/ux/5_grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/5_grey.tif -------------------------------------------------------------------------------- /firmware/ux/5_orange_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/5_orange_purple.png -------------------------------------------------------------------------------- /firmware/ux/5_orange_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/5_orange_purple.tif -------------------------------------------------------------------------------- /firmware/ux/5_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/5_purple.png -------------------------------------------------------------------------------- /firmware/ux/5_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/5_purple.tif -------------------------------------------------------------------------------- /firmware/ux/6_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/6_black.png -------------------------------------------------------------------------------- /firmware/ux/6_black.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/6_black.tif -------------------------------------------------------------------------------- /firmware/ux/6_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/6_blue.png -------------------------------------------------------------------------------- /firmware/ux/6_blue.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/6_blue.tif -------------------------------------------------------------------------------- /firmware/ux/6_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/6_grey.png -------------------------------------------------------------------------------- /firmware/ux/6_grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/6_grey.tif -------------------------------------------------------------------------------- /firmware/ux/6_orange_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/6_orange_purple.png -------------------------------------------------------------------------------- /firmware/ux/6_orange_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/6_orange_purple.tif -------------------------------------------------------------------------------- /firmware/ux/6_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/6_purple.png -------------------------------------------------------------------------------- /firmware/ux/6_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/6_purple.tif -------------------------------------------------------------------------------- /firmware/ux/7_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/7_black.png -------------------------------------------------------------------------------- /firmware/ux/7_black.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/7_black.tif -------------------------------------------------------------------------------- /firmware/ux/7_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/7_blue.png -------------------------------------------------------------------------------- /firmware/ux/7_blue.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/7_blue.tif -------------------------------------------------------------------------------- /firmware/ux/7_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/7_grey.png -------------------------------------------------------------------------------- /firmware/ux/7_grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/7_grey.tif -------------------------------------------------------------------------------- /firmware/ux/7_orange_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/7_orange_purple.png -------------------------------------------------------------------------------- /firmware/ux/7_orange_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/7_orange_purple.tif -------------------------------------------------------------------------------- /firmware/ux/7_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/7_purple.png -------------------------------------------------------------------------------- /firmware/ux/7_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/7_purple.tif -------------------------------------------------------------------------------- /firmware/ux/8_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/8_black.png -------------------------------------------------------------------------------- /firmware/ux/8_black.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/8_black.tif -------------------------------------------------------------------------------- /firmware/ux/8_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/8_blue.png -------------------------------------------------------------------------------- /firmware/ux/8_blue.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/8_blue.tif -------------------------------------------------------------------------------- /firmware/ux/8_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/8_grey.png -------------------------------------------------------------------------------- /firmware/ux/8_grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/8_grey.tif -------------------------------------------------------------------------------- /firmware/ux/8_orange_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/8_orange_purple.png -------------------------------------------------------------------------------- /firmware/ux/8_orange_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/8_orange_purple.tif -------------------------------------------------------------------------------- /firmware/ux/8_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/8_purple.png -------------------------------------------------------------------------------- /firmware/ux/8_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/8_purple.tif -------------------------------------------------------------------------------- /firmware/ux/9_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/9_black.png -------------------------------------------------------------------------------- /firmware/ux/9_black.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/9_black.tif -------------------------------------------------------------------------------- /firmware/ux/9_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/9_blue.png -------------------------------------------------------------------------------- /firmware/ux/9_blue.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/9_blue.tif -------------------------------------------------------------------------------- /firmware/ux/9_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/9_grey.png -------------------------------------------------------------------------------- /firmware/ux/9_grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/9_grey.tif -------------------------------------------------------------------------------- /firmware/ux/9_orange_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/9_orange_purple.png -------------------------------------------------------------------------------- /firmware/ux/9_orange_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/9_orange_purple.tif -------------------------------------------------------------------------------- /firmware/ux/9_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/9_purple.png -------------------------------------------------------------------------------- /firmware/ux/9_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/9_purple.tif -------------------------------------------------------------------------------- /firmware/ux/assets.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/assets.xlsx -------------------------------------------------------------------------------- /firmware/ux/broken_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/broken_grey.png -------------------------------------------------------------------------------- /firmware/ux/broken_grey.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/broken_grey.tif -------------------------------------------------------------------------------- /firmware/ux/broken_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/broken_purple.png -------------------------------------------------------------------------------- /firmware/ux/broken_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/broken_purple.tif -------------------------------------------------------------------------------- /firmware/ux/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/control.png -------------------------------------------------------------------------------- /firmware/ux/control.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/control.tif -------------------------------------------------------------------------------- /firmware/ux/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/convert.sh -------------------------------------------------------------------------------- /firmware/ux/degreesc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/degreesc.png -------------------------------------------------------------------------------- /firmware/ux/degreesc.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/degreesc.tif -------------------------------------------------------------------------------- /firmware/ux/degreesc_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/degreesc_black.png -------------------------------------------------------------------------------- /firmware/ux/degreesc_black.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/degreesc_black.tif -------------------------------------------------------------------------------- /firmware/ux/degreesc_orange_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/degreesc_orange_purple.png -------------------------------------------------------------------------------- /firmware/ux/degreesc_orange_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/degreesc_orange_purple.tif -------------------------------------------------------------------------------- /firmware/ux/degreesc_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/degreesc_purple.png -------------------------------------------------------------------------------- /firmware/ux/degreesc_purple.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/degreesc_purple.tif -------------------------------------------------------------------------------- /firmware/ux/derivative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/derivative.png -------------------------------------------------------------------------------- /firmware/ux/derivative.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/derivative.tif -------------------------------------------------------------------------------- /firmware/ux/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/exit.png -------------------------------------------------------------------------------- /firmware/ux/exit.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/exit.tif -------------------------------------------------------------------------------- /firmware/ux/exit_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/exit_disabled.png -------------------------------------------------------------------------------- /firmware/ux/exit_disabled.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/exit_disabled.tif -------------------------------------------------------------------------------- /firmware/ux/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/flame.png -------------------------------------------------------------------------------- /firmware/ux/flame.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/flame.tif -------------------------------------------------------------------------------- /firmware/ux/integer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/integer.png -------------------------------------------------------------------------------- /firmware/ux/integer.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/integer.tif -------------------------------------------------------------------------------- /firmware/ux/lead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/lead.png -------------------------------------------------------------------------------- /firmware/ux/lead.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/lead.tif -------------------------------------------------------------------------------- /firmware/ux/leadchecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/leadchecked.png -------------------------------------------------------------------------------- /firmware/ux/leadchecked.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/leadchecked.tif -------------------------------------------------------------------------------- /firmware/ux/leadfree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/leadfree.png -------------------------------------------------------------------------------- /firmware/ux/leadfree.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/leadfree.tif -------------------------------------------------------------------------------- /firmware/ux/leadfreechecked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/leadfreechecked.png -------------------------------------------------------------------------------- /firmware/ux/leadfreechecked.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/leadfreechecked.tif -------------------------------------------------------------------------------- /firmware/ux/logo/fire1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/logo/fire1.jpg -------------------------------------------------------------------------------- /firmware/ux/logo/logo.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/logo/logo.tif -------------------------------------------------------------------------------- /firmware/ux/logo/logo640x360.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/logo/logo640x360.tif -------------------------------------------------------------------------------- /firmware/ux/logo/paper_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/logo/paper_texture.jpg -------------------------------------------------------------------------------- /firmware/ux/logo640x360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/logo640x360.png -------------------------------------------------------------------------------- /firmware/ux/oven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/oven.png -------------------------------------------------------------------------------- /firmware/ux/oven.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/oven.tif -------------------------------------------------------------------------------- /firmware/ux/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/pause.png -------------------------------------------------------------------------------- /firmware/ux/pause.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/pause.tif -------------------------------------------------------------------------------- /firmware/ux/pause_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/pause_disabled.png -------------------------------------------------------------------------------- /firmware/ux/pause_disabled.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/pause_disabled.tif -------------------------------------------------------------------------------- /firmware/ux/point_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/point_blue.png -------------------------------------------------------------------------------- /firmware/ux/point_blue.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/point_blue.tif -------------------------------------------------------------------------------- /firmware/ux/proportional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/proportional.png -------------------------------------------------------------------------------- /firmware/ux/proportional.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/proportional.tif -------------------------------------------------------------------------------- /firmware/ux/reflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/reflow.png -------------------------------------------------------------------------------- /firmware/ux/reflow.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/reflow.tif -------------------------------------------------------------------------------- /firmware/ux/reflowControl.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/reflowControl.tif -------------------------------------------------------------------------------- /firmware/ux/run.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/run.tif -------------------------------------------------------------------------------- /firmware/ux/snagcu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/snagcu.png -------------------------------------------------------------------------------- /firmware/ux/snagcu.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/snagcu.tif -------------------------------------------------------------------------------- /firmware/ux/snpb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/snpb.png -------------------------------------------------------------------------------- /firmware/ux/snpb.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/snpb.tif -------------------------------------------------------------------------------- /firmware/ux/spiflash/0_black.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/0_black.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/0_blue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/0_blue.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/0_grey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/0_grey.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/0_orange_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/0_orange_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/0_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/0_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/1_black.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/1_black.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/1_blue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/1_blue.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/1_grey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/1_grey.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/1_orange_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/1_orange_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/1_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/1_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/2_black.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/2_black.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/2_blue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/2_blue.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/2_grey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/2_grey.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/2_orange_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/2_orange_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/2_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/2_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/3_black.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/3_black.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/3_blue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/3_blue.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/3_grey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/3_grey.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/3_orange_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/3_orange_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/3_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/3_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/4_black.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/4_black.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/4_blue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/4_blue.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/4_grey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/4_grey.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/4_orange_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/4_orange_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/4_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/4_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/5_black.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/5_black.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/5_blue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/5_blue.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/5_grey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/5_grey.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/5_orange_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/5_orange_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/5_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/5_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/6_black.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/6_black.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/6_blue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/6_blue.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/6_grey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/6_grey.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/6_orange_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/6_orange_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/6_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/6_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/7_black.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/7_black.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/7_blue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/7_blue.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/7_grey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/7_grey.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/7_orange_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/7_orange_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/7_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/7_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/8_black.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/8_black.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/8_blue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/8_blue.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/8_grey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/8_grey.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/8_orange_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/8_orange_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/8_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/8_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/9_black.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/9_black.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/9_blue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/9_blue.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/9_grey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/9_grey.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/9_orange_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/9_orange_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/9_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/9_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/broken_grey.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/broken_grey.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/broken_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/broken_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/control.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/control.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/degreesc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/degreesc.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/degreesc_black.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/degreesc_black.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/degreesc_orange_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/degreesc_orange_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/degreesc_purple.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/degreesc_purple.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/derivative.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/derivative.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/exit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/exit.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/exit_disabled.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/exit_disabled.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/flame.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/flame.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/index.txt -------------------------------------------------------------------------------- /firmware/ux/spiflash/integer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/integer.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/lead.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/lead.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/leadchecked.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/leadchecked.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/leadfree.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/leadfree.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/leadfreechecked.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/leadfreechecked.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/logo640x360.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/logo640x360.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/oven.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/oven.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/pause.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/pause.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/pause_disabled.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/pause_disabled.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/point_blue.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/point_blue.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/proportional.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/proportional.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/reflow.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/reflow.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/snagcu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/snagcu.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/snpb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/snpb.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/start.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/start.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/start_disabled.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/start_disabled.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/stop.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/stop.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/stop_disabled.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/stop_disabled.bin -------------------------------------------------------------------------------- /firmware/ux/spiflash/thermometer.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/spiflash/thermometer.bin -------------------------------------------------------------------------------- /firmware/ux/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/start.png -------------------------------------------------------------------------------- /firmware/ux/start.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/start.tif -------------------------------------------------------------------------------- /firmware/ux/start_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/start_disabled.png -------------------------------------------------------------------------------- /firmware/ux/start_disabled.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/start_disabled.tif -------------------------------------------------------------------------------- /firmware/ux/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/stop.png -------------------------------------------------------------------------------- /firmware/ux/stop.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/stop.tif -------------------------------------------------------------------------------- /firmware/ux/stop_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/stop_disabled.png -------------------------------------------------------------------------------- /firmware/ux/stop_disabled.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/stop_disabled.tif -------------------------------------------------------------------------------- /firmware/ux/thermometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/thermometer.png -------------------------------------------------------------------------------- /firmware/ux/thermometer.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/firmware/ux/thermometer.tif -------------------------------------------------------------------------------- /simulation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/.gitignore -------------------------------------------------------------------------------- /simulation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/App.config -------------------------------------------------------------------------------- /simulation/DoublePid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/DoublePid.cs -------------------------------------------------------------------------------- /simulation/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/MainForm.Designer.cs -------------------------------------------------------------------------------- /simulation/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/MainForm.cs -------------------------------------------------------------------------------- /simulation/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/MainForm.resx -------------------------------------------------------------------------------- /simulation/Pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/Pid.h -------------------------------------------------------------------------------- /simulation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/Program.cs -------------------------------------------------------------------------------- /simulation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /simulation/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /simulation/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/Properties/Resources.resx -------------------------------------------------------------------------------- /simulation/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /simulation/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/Properties/Settings.settings -------------------------------------------------------------------------------- /simulation/simulation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/simulation.csproj -------------------------------------------------------------------------------- /simulation/simulation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andysworkshop/awreflow/HEAD/simulation/simulation.sln --------------------------------------------------------------------------------