mirror of
https://github.com/wagiminator/ATmega-Soldering-Station.git
synced 2025-08-07 13:00:30 +03:00
更改默认界面配色Change the default interface color scheme
1.主界面默认黑色底 2.增加主报警屏幕闪烁 3.增加两条可输入指令 EEPROM-查看EEPROM内存 RESET. -重置数据 1. Default black background on the main interface 2. Increase flicker of main alarm screen 3. Add two input instructions, respectively EEPROM- View EEPROM memory RESET. - RESET data
This commit is contained in:
BIN
software/UI_upgrade_by_createskyblue/Program/1.8/1.8t7.zip
Normal file
BIN
software/UI_upgrade_by_createskyblue/Program/1.8/1.8t7.zip
Normal file
Binary file not shown.
@@ -113,12 +113,12 @@ Arduboy2 arduboy;
|
|||||||
#define TEMP_DEFAULT 320 // default start setpoint
|
#define TEMP_DEFAULT 320 // default start setpoint
|
||||||
#define TEMP_SLEEP 150 // temperature in sleep mode
|
#define TEMP_SLEEP 150 // temperature in sleep mode
|
||||||
#define TEMP_BOOST 60 // temperature increase in boost mode
|
#define TEMP_BOOST 60 // temperature increase in boost mode
|
||||||
#define TEMP_STEP 10 // rotary encoder temp change steps
|
#define TEMP_STEP 5 // rotary encoder temp change steps
|
||||||
|
|
||||||
// Default tip temperature calibration values
|
// Default tip temperature calibration values
|
||||||
#define TEMPCHP 30 // chip temperature while calibration
|
#define TEMPCHP 30 // chip temperature while calibration
|
||||||
#define TIPMAX 30 // max number of tips
|
#define TIPMAX 30 // max number of tips
|
||||||
#define TIPNAMELENGTH 6 // max length of tip names (including termination)
|
#define TIPNAMELENGTH 7 // max length of tip names (including termination)
|
||||||
#define TIPNAME "SZtip" // default tip name
|
#define TIPNAME "SZtip" // default tip name
|
||||||
|
|
||||||
|
|
||||||
@@ -135,7 +135,7 @@ Arduboy2 arduboy;
|
|||||||
#define MAINSCREEN 1 // type of main screen (0: big numbers; 1: more infos)
|
#define MAINSCREEN 1 // type of main screen (0: big numbers; 1: more infos)
|
||||||
|
|
||||||
// EEPROM identifier
|
// EEPROM identifier
|
||||||
#define EEPROM_IDENT 0x140B // to identify if EEPROM was written by this program
|
#define EEPROM_IDENT 0x140C // to identify if EEPROM was written by this program
|
||||||
|
|
||||||
//Beep
|
//Beep
|
||||||
#define SetBeepCoolTime 200
|
#define SetBeepCoolTime 200
|
||||||
@@ -241,7 +241,7 @@ void setup() {
|
|||||||
|
|
||||||
//启动arduboy内核
|
//启动arduboy内核
|
||||||
arduboy.begin();
|
arduboy.begin();
|
||||||
arduboy.setFrameRate(30);
|
arduboy.setFrameRate(15);
|
||||||
|
|
||||||
//Serial.begin(115200);
|
//Serial.begin(115200);
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -10,31 +10,28 @@ void CheckEEPROM() {
|
|||||||
EEPROM[i] = w;
|
EEPROM[i] = w;
|
||||||
r = EEPROM[i];
|
r = EEPROM[i];
|
||||||
if (w == r) pass++; else fail++;
|
if (w == r) pass++; else fail++;
|
||||||
|
if (arduboy.nextFrame()) {
|
||||||
|
//显示测试数据
|
||||||
|
arduboy.clear();
|
||||||
|
arduboy.setTextSize(2);
|
||||||
|
SetTextColor(0);
|
||||||
|
arduboy.setCursor(0, 0);
|
||||||
|
arduboy.print(F(" MEM CHECK "));
|
||||||
|
|
||||||
//显示测试数据
|
arduboy.setTextSize(1);
|
||||||
arduboy.clear();
|
arduboy.setCursor(8, 40);
|
||||||
arduboy.setTextSize(2);
|
arduboy.print(i); arduboy.print(F("/")); arduboy.print(EEPROM.length());
|
||||||
SetTextColor(0);
|
SetTextColor(1);
|
||||||
arduboy.setCursor(0, 0);
|
arduboy.setCursor(0 + 8, 24); arduboy.print(F("PASS-")); arduboy.print(pass);
|
||||||
arduboy.print(F(" MEM CHECK "));
|
arduboy.setCursor(64 + 8, 24); arduboy.print(F("FAIL-")); arduboy.print(fail);
|
||||||
|
|
||||||
arduboy.setTextSize(1);
|
arduboy.setCursor(0 + 8, 32); arduboy.print(F("W -> ")); arduboy.print(w);
|
||||||
arduboy.setCursor(8, 40);
|
arduboy.setCursor(64 + 8, 32); arduboy.print(F("R -> ")); arduboy.print(r);
|
||||||
arduboy.print(i); arduboy.print(F("/")); arduboy.print(EEPROM.length());
|
|
||||||
SetTextColor(1);
|
|
||||||
arduboy.setCursor(0 + 8, 24); arduboy.print(F("PASS-")); arduboy.print(pass);
|
|
||||||
arduboy.setCursor(64 + 8, 24); arduboy.print(F("FAIL-")); arduboy.print(fail);
|
|
||||||
|
|
||||||
arduboy.setCursor(0 + 8, 32); arduboy.print(F("W -> ")); arduboy.print(w);
|
ProgressBar(i, 0, EEPROM.length(), 0, 60, 128, 4, 1);
|
||||||
arduboy.setCursor(64 + 8, 32); arduboy.print(F("R -> ")); arduboy.print(r);
|
|
||||||
|
|
||||||
|
arduboy.display();
|
||||||
//进度标
|
}
|
||||||
arduboy.setCursor(map(i, 0, EEPROM.length(), 0, 92), 52);
|
|
||||||
arduboy.print(((float)i / EEPROM.length())*100); arduboy.print(F("%"));
|
|
||||||
//进度条
|
|
||||||
arduboy.fillRect(0, 60, map(i, 0, EEPROM.length(), 0, 127), 4, 1);
|
|
||||||
arduboy.display();
|
|
||||||
}
|
}
|
||||||
//EEPROM存储器可用性检查失败
|
//EEPROM存储器可用性检查失败
|
||||||
while (fail != 0) {
|
while (fail != 0) {
|
||||||
@@ -56,7 +53,7 @@ void CheckEEPROM() {
|
|||||||
通过板载的旋转编码器可以上下滚动翻阅EEPROM中的数据
|
通过板载的旋转编码器可以上下滚动翻阅EEPROM中的数据
|
||||||
*/
|
*/
|
||||||
void ViewEEPRom() {
|
void ViewEEPRom() {
|
||||||
setRotary(0, 1023, 16, 0);
|
setRotary(0, 1023, 4, 0);
|
||||||
lastbutton = (!digitalRead(BUTTON_PIN));
|
lastbutton = (!digitalRead(BUTTON_PIN));
|
||||||
arduboy.setTextSize(1);
|
arduboy.setTextSize(1);
|
||||||
do {
|
do {
|
||||||
|
@@ -1,8 +1,7 @@
|
|||||||
|
|
||||||
// draws the main screen
|
// draws the main screen
|
||||||
void MainScreen() {
|
void MainScreen() {
|
||||||
if (!(arduboy.nextFrame())) //帧率锁
|
if (!(arduboy.nextFrame())) return;
|
||||||
return;
|
|
||||||
//状态
|
//状态
|
||||||
byte SysState;
|
byte SysState;
|
||||||
if (ShowTemp > 500) SysState = 0;
|
if (ShowTemp > 500) SysState = 0;
|
||||||
@@ -16,7 +15,7 @@ void MainScreen() {
|
|||||||
else SysState = 6;
|
else SysState = 6;
|
||||||
if (SysState != 1) {
|
if (SysState != 1) {
|
||||||
if (MainScrType) {
|
if (MainScrType) {
|
||||||
//arduboy.invert(0);
|
arduboy.invert(1);
|
||||||
arduboy.clear();
|
arduboy.clear();
|
||||||
//详细信息页
|
//详细信息页
|
||||||
arduboy.fillRect(0, 0, 128, 64, 1); //白底
|
arduboy.fillRect(0, 0, 128, 64, 1); //白底
|
||||||
@@ -24,7 +23,7 @@ void MainScreen() {
|
|||||||
SetTextColor(0);
|
SetTextColor(0);
|
||||||
//预设名
|
//预设名
|
||||||
//arduboy.drawSlowXYBitmap(0, 0, Tag, 16, 16, 0);
|
//arduboy.drawSlowXYBitmap(0, 0, Tag, 16, 16, 0);
|
||||||
arduboy.setCursor(7, 4); arduboy.print(TipName);
|
arduboy.setCursor(2, 4); arduboy.print(TipName);
|
||||||
//显示状态
|
//显示状态
|
||||||
arduboy.setCursor(53, 1);
|
arduboy.setCursor(53, 1);
|
||||||
arduboy.setTextSize(2);
|
arduboy.setTextSize(2);
|
||||||
@@ -70,7 +69,11 @@ void MainScreen() {
|
|||||||
|
|
||||||
arduboy.display();
|
arduboy.display();
|
||||||
//警报声
|
//警报声
|
||||||
if (getChipTemp() > 80 && ((millis() * 4) / 1000) % 2 || (float)Vin / 100 < UnderVoltage && ((millis() * 4) / 1000) % 2) beep();
|
if (getChipTemp() > 80 && ((millis() * 4) / 1000) % 2 || (float)Vin / 100 < UnderVoltage && ((millis() * 4) / 1000) % 2) {
|
||||||
|
beep();
|
||||||
|
arduboy.invert(0);
|
||||||
|
};
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
//arduboy.invert(1);
|
//arduboy.invert(1);
|
||||||
arduboy.setTextSize(6);
|
arduboy.setTextSize(6);
|
||||||
@@ -85,6 +88,8 @@ void MainScreen() {
|
|||||||
arduboy.display();
|
arduboy.display();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
void DrawNumRect(byte x, byte y, byte size, int n) {
|
void DrawNumRect(byte x, byte y, byte size, int n) {
|
||||||
arduboy.setCursor(3 + x, 3 + y);
|
arduboy.setCursor(3 + x, 3 + y);
|
||||||
@@ -109,7 +114,7 @@ void DrawStatusBar(bool color) {
|
|||||||
arduboy.drawLine(map(Setpoint, 0, 500, 2, 102) - 1, 63, map(Setpoint, 0, 500, 2, 102) - 1, 54, !color);
|
arduboy.drawLine(map(Setpoint, 0, 500, 2, 102) - 1, 63, map(Setpoint, 0, 500, 2, 102) - 1, 54, !color);
|
||||||
|
|
||||||
//画指示针
|
//画指示针
|
||||||
arduboy.drawSlowXYBitmap(map(Setpoint, 0, 500, 2, 102) - 3, 59, Pointer, 5, 4, !color);
|
arduboy.drawSlowXYBitmap(map(Setpoint, 0, 500, 2, 102) - 3, 60, Pointer, 5, 4, !color);
|
||||||
|
|
||||||
//功率条
|
//功率条
|
||||||
arduboy.drawRect(104, 54, 23, 9, color);
|
arduboy.drawRect(104, 54, 23, 9, color);
|
||||||
@@ -131,6 +136,7 @@ void SetTextColor(bool color) {
|
|||||||
|
|
||||||
// setup screen
|
// setup screen
|
||||||
void SetupScreen() {
|
void SetupScreen() {
|
||||||
|
arduboy.invert(0);
|
||||||
//关闭加热
|
//关闭加热
|
||||||
#if UsePMOS
|
#if UsePMOS
|
||||||
analogWrite(CONTROL_PIN, 0);
|
analogWrite(CONTROL_PIN, 0);
|
||||||
@@ -259,7 +265,6 @@ void TipScreen() {
|
|||||||
default: repeat = false; break;
|
default: repeat = false; break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ViewEEPRom();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//温控设置菜单
|
//温控设置菜单
|
||||||
@@ -515,6 +520,17 @@ void ChangeTipScreen() {
|
|||||||
CurrentTip = selected;
|
CurrentTip = selected;
|
||||||
GetEEPRomTip(CurrentTip);
|
GetEEPRomTip(CurrentTip);
|
||||||
beep();
|
beep();
|
||||||
|
//控制台指令
|
||||||
|
String s = TipName;
|
||||||
|
if (s == "EEPROM\0") ViewEEPRom();
|
||||||
|
if (s == "RESET.\0") {
|
||||||
|
MenuLevel = 7;
|
||||||
|
if (MenuScreen(0)) {
|
||||||
|
for (int i = 0 ; i < EEPROM.length() ; i++) EEPROM.write(i, 255);
|
||||||
|
resetFunc();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// if (s == "LIGHT.\0")
|
||||||
ShowPTemp(&PTemp[0]);
|
ShowPTemp(&PTemp[0]);
|
||||||
|
|
||||||
|
|
||||||
@@ -546,11 +562,14 @@ void CalibrationScreen() {
|
|||||||
if (2 * y + x > CalStep) break;
|
if (2 * y + x > CalStep) break;
|
||||||
arduboy.setCursor(x * 64 + 10, y * 8 + 16);
|
arduboy.setCursor(x * 64 + 10, y * 8 + 16);
|
||||||
arduboy.print(CalTemp[2 * y + x]);
|
arduboy.print(CalTemp[2 * y + x]);
|
||||||
arduboy.print(F(" - "));
|
arduboy.print((char)248);
|
||||||
|
arduboy.print(F("- "));
|
||||||
if (2 * y + x == CalStep) arduboy.print(getRotary());
|
if (2 * y + x == CalStep) arduboy.print(getRotary());
|
||||||
else arduboy.print(xx[2 * y + x]);
|
else arduboy.print(xx[2 * y + x]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//进度条
|
||||||
|
ProgressBar(CalStep + 1, 0, 9, 0, 60, 128, 4, 1);
|
||||||
|
|
||||||
CheckLastButton();
|
CheckLastButton();
|
||||||
arduboy.display();
|
arduboy.display();
|
||||||
@@ -755,3 +774,16 @@ void ShowVersion() {
|
|||||||
arduboy.display();
|
arduboy.display();
|
||||||
delay(300);
|
delay(300);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*进度条
|
||||||
|
传入:i=值 a=值的最小值 b=值的最大值 x=左上顶点x轴坐标 y=左上顶点y轴坐标 w=宽度 h=高度 c=颜色
|
||||||
|
*/
|
||||||
|
void ProgressBar(int i, int a, int b, byte x, byte y, byte w, byte h, bool c) {
|
||||||
|
SetTextColor(c);
|
||||||
|
arduboy.setTextSize(c);
|
||||||
|
//进度标
|
||||||
|
arduboy.setCursor(map(i, a, b, 0, 92), 52);
|
||||||
|
arduboy.print(((float)i / (b - a)) * 100); arduboy.print(F("%"));
|
||||||
|
//进度条
|
||||||
|
arduboy.fillRect(x, y, map(i, a, b, 0, w), h, c);
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user