123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /**
- * Marlin 3D Printer Firmware
- * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
- *
- * Based on Sprinter and grbl.
- * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- *
- */
- /**
- * lcd/extui/anycubic_chiron_lcd.cpp
- *
- * Anycubic Chiron TFT support for Marlin
- */
- #include "../../inc/MarlinConfigPre.h"
- #if ENABLED(ANYCUBIC_LCD_CHIRON)
- #include "ui_api.h"
- #include "lib/anycubic_chiron/chiron_tft.h"
- using namespace Anycubic;
- namespace ExtUI {
- void onStartup() { Chiron.Startup(); }
- void onIdle() { Chiron.IdleLoop(); }
- void onPrinterKilled(PGM_P const error, PGM_P const component) {
- Chiron.PrinterKilled(error,component);
- }
- void onMediaInserted() { Chiron.MediaEvent(AC_media_inserted); }
- void onMediaError() { Chiron.MediaEvent(AC_media_error); }
- void onMediaRemoved() { Chiron.MediaEvent(AC_media_removed); }
- void onPlayTone(const uint16_t frequency, const uint16_t duration) {
- #if ENABLED(SPEAKER)
- ::tone(BEEPER_PIN, frequency, duration);
- #endif
- }
- void onPrintTimerStarted() { Chiron.TimerEvent(AC_timer_started); }
- void onPrintTimerPaused() { Chiron.TimerEvent(AC_timer_paused); }
- void onPrintTimerStopped() { Chiron.TimerEvent(AC_timer_stopped); }
- void onFilamentRunout(const extruder_t) { Chiron.FilamentRunout(); }
- void onUserConfirmRequired(const char * const msg) { Chiron.ConfirmationRequest(msg); }
- void onStatusChanged(const char * const msg) { Chiron.StatusChange(msg); }
- void onHomingStart() {}
- void onHomingComplete() {}
- void onPrintFinished() {}
- void onFactoryReset() {}
- void onStoreSettings(char *buff) {
- // Called when saving to EEPROM (i.e. M500). If the ExtUI needs
- // permanent data to be stored, it can write up to eeprom_data_size bytes
- // into buff.
- // Example:
- // static_assert(sizeof(myDataStruct) <= eeprom_data_size);
- // memcpy(buff, &myDataStruct, sizeof(myDataStruct));
- }
- void onLoadSettings(const char *buff) {
- // Called while loading settings from EEPROM. If the ExtUI
- // needs to retrieve data, it should copy up to eeprom_data_size bytes
- // from buff
- // Example:
- // static_assert(sizeof(myDataStruct) <= eeprom_data_size);
- // memcpy(&myDataStruct, buff, sizeof(myDataStruct));
- }
- void onPostprocessSettings() {
- // Called after loading or resetting stored settings
- }
- void onConfigurationStoreWritten(bool success) {
- // Called after the entire EEPROM has been written,
- // whether successful or not.
- }
- void onConfigurationStoreRead(bool success) {
- // Called after the entire EEPROM has been read,
- // whether successful or not.
- }
- #if HAS_MESH
- void onMeshLevelingStart() {}
- void onMeshUpdate(const int8_t xpos, const int8_t ypos, const_float_t zval) {
- // Called when any mesh points are updated
- //SERIAL_ECHOLNPAIR("onMeshUpdate() x:", xpos, " y:", ypos, " z:", zval);
- }
- void onMeshUpdate(const int8_t xpos, const int8_t ypos, const probe_state_t state) {
- // Called to indicate a special condition
- //SERIAL_ECHOLNPAIR("onMeshUpdate() x:", xpos, " y:", ypos, " state:", state);
- }
- #endif
- #if ENABLED(POWER_LOSS_RECOVERY)
- // Called on resume from power-loss
- void onPowerLossResume() { Chiron.PowerLossRecovery(); }
- #endif
- #if HAS_PID_HEATING
- void onPidTuning(const result_t rst) {
- // Called for temperature PID tuning result
- }
- #endif
- void onSteppersDisabled() {}
- void onSteppersEnabled() {}
- }
- #endif // ANYCUBIC_LCD_CHIRON
|