12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
-
-
-
-
- #include "../inc/MarlinConfigPre.h"
-
- #if BOTH(EXTUI_EXAMPLE, EXTENSIBLE_UI)
-
- #include "extensible_ui/ui_api.h"
-
-
-
-
-
-
-
-
-
- namespace ExtUI {
- void onStartup() {
-
-
- }
- void onIdle() {}
- void onPrinterKilled(PGM_P const msg) {}
- void onMediaInserted() {};
- void onMediaError() {};
- void onMediaRemoved() {};
- void onPlayTone(const uint16_t frequency, const uint16_t duration) {}
- void onPrintTimerStarted() {}
- void onPrintTimerPaused() {}
- void onPrintTimerStopped() {}
- void onFilamentRunout(const extruder_t extruder) {}
- void onUserConfirmRequired(const char * const msg) {}
- void onStatusChanged(const char * const msg) {}
- void onFactoryReset() {}
-
- void onStoreSettings(char *buff) {
-
-
-
-
-
-
-
- }
-
- void onLoadSettings(const char *buff) {
-
-
-
-
-
-
-
- }
-
- void onConfigurationStoreWritten(bool success) {
-
-
- }
-
- void onConfigurationStoreRead(bool success) {
-
-
- }
-
- void onMeshUpdate(const uint8_t xpos, const uint8_t ypos, const float zval) {
-
- }
- }
-
- #endif
|