-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiboard support #21
Draft
amotl
wants to merge
111
commits into
hiveeyes:main
Choose a base branch
from
hiveeyes:amo/multiboard-support
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
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
no more needed with the latest commits at the original HX711 lib from bodge
added hint to updated HX711 lib
copy in other folder
copy in other folder
copy in other folder
copy in other folder
copy in other folder
file name changed
move historic files to new directory
delet test file
move file to other directory
move file to other directory
move file to other directory
rename file
Thanks to Michael!
Drehrichtung im Scroll-Menu umgedreht
Infos zur binär-Datei hinzugefügt
bin-Datei hinzugefügt, wurde mit folgenden Parametern für das Board Heltec ESP32 Arduino > Wifi Kit 32 compiliert: #define HARDWARE_LEVEL 2 // 1 = originales Layout mit Schalter auf Pin 19/22/21 // 2 = Layout für V2 mit Schalter auf Pin 23/19/22 #define SERVO_ERWEITERT // definieren, falls die Hardware mit dem alten Programmcode mit Poti aufgebaut wurde oder der Servo zu wenig fährt // Sonst bleibt der Servo in Stop-Position einige Grad offen! Nach dem Update erst prüfen! #define ROTARY_SCALE 2 // in welchen Schritten springt unser Rotary Encoder. // Beispiele: KY-040 = 2, HW-040 = 1, für Poti-Betrieb auf 1 setzen #define USE_ROTARY // Rotary benutzen #define USE_ROTARY_SW // Taster des Rotary benutzen
typo fixed
Konkretisierung changelog
3D-Teile von JoSef, lieben Dank fürs zur Verfügung stellen!
typo fixed
images added
This will automatically run the build on GitHub Actions. Thus, it will improve confidence for the authors regarding all further contributions.
added `^` for > any compatible version (new functionality in a backwards compatible manner and patches are allowed, 1.x.x). **RECOMMENDED** recommended via: https://docs.platformio.org/en/latest/core/userguide/lib/cmd_install.html#description
Add CI using PlatformIO
- A PlatformIO CI badge to show that the build is passing successfully - A GitHub tag badge to show the most recent release version tag
This uses the most recent versions of the U8g2 and ESP32Servo libraries. Both libraries are well maintained by their respective authors and maintainers, so we should use them in favour of outdated libraries which are no longer maintained. A little adjustment has been made to one #include statement. The updated library header file is now called "ESP32Servo.h" instead of "ESP32_Servo.h". Also, the servo default settings for the non-"SERVO_ERWEITERT" branch have been adjusted.
Update library versions
Add badges for PlatformIO CI and GitHub tag
- Fortschrittsanzeige eingebaut - Servo-Bibliothek geändert, jetzt ESP32Servo aus dem Bibliotheksverwalter und Servo-defaults für die neue Bibliothek angepasst - PlatformIO-Support an neue Servo-Bibliothek angepasst
Remove trailing whitespace
amotl
force-pushed
the
amo/multiboard-support
branch
from
January 16, 2021 21:46
fcc22f3
to
f473144
Compare
This prepares the code base to support three board variants - Heltec WiFi Kit 32 - Heltec WiFi LoRa 32 - Heltec WiFi LoRa 32 (V2) It also removes the "HARDWARE_LEVEL" preprocessor definition and replaces the respective configuration for "HARDWARE_LEVEL == 1" by a constant "HARDWARE_LAYOUT_LEGACY".
amotl
force-pushed
the
amo/multiboard-support
branch
from
January 16, 2021 22:04
f473144
to
1acc542
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi @ClemensGruber, @andreash-esp and @SBajonczak,
this patch prepares the code base to support three board variants.
It also removes the
HARDWARE_LEVEL
preprocessor definition and replaces the respective configuration forHARDWARE_LEVEL == 1
by a constantHARDWARE_LAYOUT_LEGACY
.This will make bringing in the improvements from #15 by @SBajonczak easier as we will not have to introduce either
HARDWARE_LEVEL == 3
or invent any other custom#define
constants for mapping different boards.With kind regards,
Andreas.
P.S.: This patch is based on #20, so this PR should be integrated first in order to reduce diff noise.