Adds autostart option. Only works on first power up, so if the settings wrong you can still easily change it 😄 Fixes #43
19 lines
379 B
C
19 lines
379 B
C
/*
|
|
* Strings.h
|
|
*
|
|
* Created on: 4Aug.,2017
|
|
* Author: Ben V. Brown
|
|
*/
|
|
|
|
/*
|
|
* This file is used to allow for different language builds of the firmware
|
|
* This file houses all the strings for the text used on the iron.
|
|
*/
|
|
#ifndef STRINGS_H_
|
|
#define STRINGS_H_
|
|
|
|
extern const char* SettingsLongNames[13];
|
|
extern const char* SettingsShortNames[13];
|
|
|
|
#endif /* STRINGS_H_ */
|