-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8158353
commit b119b47
Showing
15 changed files
with
1,239 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
**V1.13.3 - Updates** | ||
- Allowed ALT steps per revolution to be set directly | ||
- Removed drift alignment and added ability to add it back with define | ||
- Optimized string memory a little | ||
- Lowered ESP32 second core priority | ||
- Added support for informational display | ||
|
||
**V1.13.2 - Updates** | ||
- Fix for RA steps being incrrectly set on every boot. | ||
- Fix for RA steps being incorrectly set on every boot. | ||
|
||
**V1.13.1 - Updates** | ||
- Fix for uploading on AVR platform. Apparently [email protected] (current stable) is broken and can't upload, so we peg it at [email protected] for now. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ lib_deps = | |
arduino-libraries/LiquidCrystal @ ^1.0.7 | ||
lincomatic/LiquidTWI2@^1.2.7 | ||
olikraus/U8g2@^2.28.8 | ||
https://github.com/ClutchplateDude/[email protected] | ||
|
||
[env] | ||
extra_scripts = | ||
|
@@ -71,7 +72,6 @@ debug_init_break = | |
; Always upload firmware when initializing a debug session | ||
debug_load_mode = always | ||
|
||
|
||
[env:ramps] | ||
extends = common_embedded | ||
; [email protected] is currently broken (can't upload, gets stk500v2_recv errors) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#pragma once | ||
#include <Arduino.h> | ||
|
||
class Mount; | ||
|
||
// Base class to implement a | ||
class InfoDisplayRender | ||
{ | ||
public: | ||
InfoDisplayRender() {}; | ||
|
||
virtual void init() {}; | ||
virtual void render(Mount *mount) {}; | ||
virtual void setConsoleMode(bool active) {}; | ||
virtual int addConsoleText(String text, bool tinyFont = true); | ||
virtual void updateConsoleText(int line, String newText); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.