Add autostart
Adds autostart option. Only works on first power up, so if the settings wrong you can still easily change it 😄 Fixes #43
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
#include <stdint.h>
|
||||
#include "stm32f10x_flash.h"
|
||||
#include "Oled.h"
|
||||
#define SETTINGSVERSION 14 /*Change this if you change the struct below to prevent people getting out of sync*/
|
||||
#define SETTINGSVERSION 15 /*Change this if you change the struct below to prevent people getting out of sync*/
|
||||
//Display Speeds
|
||||
#define DISPLAYMODE_FAST (0x00)
|
||||
#define DISPLAYMODE_MEDIUM (0x01)
|
||||
@@ -34,7 +34,8 @@ typedef struct {
|
||||
uint8_t powerDisplay:1; //Toggle to swap the arrows with a power readout instead
|
||||
uint8_t displayTempInF:1; //If we need to convert the C reading to F
|
||||
uint8_t OrientationMode:2; //If true we want to invert the display for lefties
|
||||
uint8_t sensitivity:6; //Sensitivity of accelerometer (5 bits)
|
||||
uint8_t sensitivity:5; //Sensitivity of accelerometer (5 bits)
|
||||
uint8_t autoStart:1; //Should the unit automatically jump straight into soldering mode when power is applied
|
||||
uint8_t ShutdownTime:6; //Time until unit shuts down if left alone
|
||||
uint8_t displayUpdateSpeed:2; //How fast the display updates / temp showing mode
|
||||
uint8_t temperatureRounding:2; //Rounding mode for the temperature
|
||||
|
||||
Reference in New Issue
Block a user