Sequre T55 Support (#1928)
* Add T55 to build * Approx in T55 * Update ThermoModel.cpp * use PT1000 lookup logic * Handle no accelerometer * Setup for temp reading * Lock max temp * No movement pin * Compensate for heater coil resistance change * Fix min offset for T55 * Fixup font for T55 * Update draw_profile_advanced.cpp * Update draw_temperature_change.cpp --------- Co-authored-by: discip <53649486+discip@users.noreply.github.com>
This commit is contained in:
@@ -31,9 +31,9 @@ void ui_draw_soldering_profile_advanced(TemperatureType_t tipTemp, TemperatureTy
|
||||
|
||||
// print time progress / preheat / cooldown
|
||||
if (OLED::getRotation()) {
|
||||
OLED::setCursor(42, 8);
|
||||
OLED::setCursor(42, 16);
|
||||
} else {
|
||||
OLED::setCursor(0, 8);
|
||||
OLED::setCursor(0, 16);
|
||||
}
|
||||
|
||||
if (phase == 0) {
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
#ifdef OLED_128x32
|
||||
void ui_draw_temperature_change(void) {
|
||||
|
||||
OLED::setCursor(0, 0);
|
||||
OLED::setCursor(8, 8);
|
||||
if (OLED::getRotation()) {
|
||||
OLED::print(getSettingValue(SettingsOptions::ReverseButtonTempChangeEnabled) ? LargeSymbolPlus : LargeSymbolMinus, FontStyle::LARGE);
|
||||
} else {
|
||||
|
||||
@@ -31,6 +31,9 @@ OperatingMode showWarnings(const ButtonState buttons, guiContext *cxt) {
|
||||
#endif
|
||||
break;
|
||||
case 2: // Accelerometer detection
|
||||
#ifdef NO_ACCEL
|
||||
cxt->scratch_state.state1 = 3;
|
||||
#else
|
||||
if (DetectedAccelerometerVersion == AccelType::Scanning) {
|
||||
break;
|
||||
}
|
||||
@@ -49,6 +52,8 @@ OperatingMode showWarnings(const ButtonState buttons, guiContext *cxt) {
|
||||
} else {
|
||||
cxt->scratch_state.state1 = 3;
|
||||
}
|
||||
#endif
|
||||
|
||||
break;
|
||||
case 3:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user