Skip to content
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

add terminal watchface #932

Closed
wants to merge 38 commits into from
Closed

add terminal watchface #932

wants to merge 38 commits into from

Conversation

13werwolf13
Copy link

I tried to add watchface found here https://zephyrlabs.github.io/Watchfaces/Terminal/, I asked the developer and he doesn't mind. but now I am not able to check its work.

@NeroBurner
Copy link
Contributor

that's how it looks on my unfinished simulator https://github.com/NeroBurner/InfiniTime/tree/lv_simulation_watchface_terminal if you want to flesh it out on your PC first :)

image

@13werwolf13
Copy link
Author

that's how it looks on my unfinished simulator https://github.com/NeroBurner/InfiniTime/tree/lv_simulation_watchface_terminal if you want to flesh it out on your PC first :)

image

I will be grateful if you tell me how to check this on the simulator

@NeroBurner
Copy link
Contributor

sure thing :)

First to get the information onto your local repository, add mine as new remote neroburner

git remote add neroburner https://github.com/NeroBurner/InfiniTime.git
git fetch neroburner

Then you can switch branches to mine

git checkout lv_simulation_watchface_terminal

Then to build and run the simulator

cd lv_sim
cmake -S . -B build
cmake --build build -j4
./build/main

Then press 4 on your keyboard to get to the new Terminal watchface

@13werwolf13
Copy link
Author

13werwolf13 commented Jan 13, 2022

Now that work!

IMG_20220113_123525.jpg

@NeroBurner
Copy link
Contributor

@13werwolf13 please cherry-pick 91cf64a for relative include fixups needed for the simulator to work, and it's now recommended to use includes relative to the src directory

git cherry-pick 91cf64abf663b6cf0200353424d9eefa256331a6

Copy link
Contributor

@NeroBurner NeroBurner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please cleanup the mixed spaces and tabs

Furthermore please try to fix the sprintf related warnings

src/displayapp/screens/WatchFaceTerminal.h Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved

auto batteryValue = static_cast<uint8_t>(batteryController.PercentRemaining());
/*
char batteryGauge[12];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is this commented block still here? plan to implement it for this PR?

src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
if ((year != currentYear) || (month != currentMonth) || (dayOfWeek != currentDayOfWeek) || (day != currentDay)) {

char dateStr[38];
sprintf(dateStr, "[DATE]#007fff %04d.%02d.%02d#", short(year), char(month), char(day));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggesting to use - instead of . for the iso-date-string. That would be the ISO 8601 format that pythons date.isoformat() returns

Suggested change
sprintf(dateStr, "[DATE]#007fff %04d.%02d.%02d#", short(year), char(month), char(day));
sprintf(dateStr, "[DATE]#007fff %04d-%02d-%02d#", short(year), char(month), char(day));

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no, please, no...
it will not look so aesthetically pleasing and authentic

@13werwolf13
Copy link
Author

@NeroBurner sorry for so many mistakes, I'm not a programmer. I have fixed those issues.

@NeroBurner
Copy link
Contributor

@13werwolf13 no worries, we all had to start somewhere :)

I really like the looks of the Terminal Watchface. Thanks to making the effort to do this PR and update and cleanup this Watchface :)

The last fix I'd like to see are the relative include fixes as I've done in 91cf64a . Please cherry-pick as described earlier, or just copy the changes ;)

@13werwolf13
Copy link
Author

@13werwolf13 please cherry-pick 91cf64a for relative include fixups needed for the simulator to work, and it's now recommended to use includes relative to the src directory

git cherry-pick 91cf64abf663b6cf0200353424d9eefa256331a6

fatal: bad object 91cf64abf663b6cf0200353424d9eefa256331a6

@13werwolf13
Copy link
Author

@NeroBurner I still did not understand how this feature works, so I transferred the changes manually. I hope I haven't missed anything.

@13werwolf13
Copy link
Author

@NeroBurner done

@geekbozu
Copy link
Member

This looks great!

Copy link
Contributor

@NeroBurner NeroBurner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The following warnings are fixed by the current review, and I think we now found all the tabs

[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp: In member function 'virtual void Pinetime::Applications::Screens::WatchFaceTerminal::Refresh()':
[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp:161:32: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long long int' [-Wformat=]
[build]   161 |         sprintf(hoursChar, "%02d", hour);
[build]       |                             ~~~^   ~~~~
[build]       |                                |   |
[build]       |                                int long long int
[build]       |                             %02lld
[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp:175:32: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long long int' [-Wformat=]
[build]   175 |         sprintf(hoursChar, "%02d", hour);
[build]       |                             ~~~^   ~~~~
[build]       |                                |   |
[build]       |                                int long long int
[build]       |                             %02lld
[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp: In member function 'virtual void Pinetime::Applications::Screens::WatchFaceTerminal::Refresh()':
[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp:161:32: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long long int' [-Wformat=]
[build]   161 |         sprintf(hoursChar, "%02d", hour);
[build]       |                             ~~~^   ~~~~
[build]       |                                |   |
[build]       |                                int long long int
[build]       |                             %02lld
[build] /home/nero/repos/pinetime/InfiniTime/src/displayapp/screens/WatchFaceTerminal.cpp:175:32: warning: format '%d' expects argument of type 'int', but argument 3 has type 'long long int' [-Wformat=]
[build]   175 |         sprintf(hoursChar, "%02d", hour);
[build]       |                             ~~~^   ~~~~
[build]       |                                |   |
[build]       |                                int long long int
[build]       |                             %02lld
[build] Consolidate compiler generated dependencies of target pinetime-mcuboot-recovery-loader

src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
@Riksu9000
Copy link
Contributor

The modified files should be reformatted with clang-format. No need to review and fix indentation and format manually.

Copy link
Contributor

@NeroBurner NeroBurner left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Applying my suggestions should get you a watchface looking like this

Fixed WatchFaceTerminal

src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
src/displayapp/screens/WatchFaceTerminal.cpp Outdated Show resolved Hide resolved
13werwolf13 and others added 16 commits February 2, 2022 09:02
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
Co-authored-by: NeroBurner <pyro4hell@gmail.com>
@NeroBurner
Copy link
Contributor

NeroBurner commented Feb 2, 2022 via email

@13werwolf13
Copy link
Author

I don't see the mentioned problem. Can you describe it?

  1. this is the battery charge icon below. now that there is a text inscription I'm going to remove it. and I already found where to do it.
  2. there is an idea to remove the icon of the connected charger and replace it with the inscription in the line with interest.

unfortunately, I am now busy with very important things at work (and also do not have a charger at hand) so I will do this later in the evening.

P.S.: the problem of which I wrote earlier as it turned out was visible only to me alone, because it seems time to change my eye lenses.

@calhix
Copy link

calhix commented Feb 6, 2022

Maybe use CONN or NET for Connected/Disconnected and STAT for Charging/Discharging?

@13werwolf13
Copy link
Author

Maybe use CONN or NET for Connected/Disconnected and STAT for Charging/Discharging?

I like the "CONN" option, but "STAT" doesn't seem very appropriate.

@thefenriswolf
Copy link

thefenriswolf commented Feb 17, 2022

I really like this watch face for it's verbosity. I hope it gets merged in time for the next release.

@@ -0,0 +1,252 @@
#include "WatchFaceTerminal.h"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please use includes relative to the src directory, helps me greatly with the simulator

Suggested change
#include "WatchFaceTerminal.h"
#include "displayapp/screens/WatchFaceTerminal.h"

JF002 added a commit that referenced this pull request Feb 20, 2022
…b.com/13werwolf13). This PR adds a new Terminal watchface to InfiniTime!

Squashed commit of the following:

commit 23ea840b059c69667c8711265cecaf992791acb6
Author: Jean-François Milants <jf@codingfield.com>
Date:   Sun Feb 20 13:14:27 2022 +0100

    Terminal watch face : fix includes and a few code cleaning.

commit 3c244def25e3ad8e1f56d708fb0864c122059948
Merge: 4079086 138a655
Author: Jean-François Milants <jf@codingfield.com>
Date:   Sun Feb 20 12:45:54 2022 +0100

    Merge branch 'develop' of https://github.com/13werwolf13/InfiniTime into 13werwolf13-develop

commit 138a655
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:13:00 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.h

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 3515616
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:12:43 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 757ca2d
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:12:30 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 60b6b4e
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:12:20 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 6959d8c
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:11:46 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 4d85028
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:11:17 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit af483be
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:10:57 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 6bc6c1a
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:10:40 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.h

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 25fdafc
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:06:10 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 12e1b0f
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:05:44 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit e6c0f32
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:05:22 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.h

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 342ce8c
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:05:06 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 265fec5
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:04:06 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit b4669be
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:03:29 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 471a843
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:03:10 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 6853166
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:02:51 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit bba34f6
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Sat Jan 22 12:32:41 2022 +0500

    some fixes

commit 74eea9f
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Sat Jan 22 12:32:17 2022 +0500

    some fixes

commit 1e4a676
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Fri Jan 21 08:59:44 2022 +0500

    no errors, no warnings, no work..

commit eb8bd4d
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 20 23:50:04 2022 +0500

    add ble state text output

commit fda1c08
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 20 22:25:35 2022 +0500

    add ble state text output

commit 68d3d9b
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 20 22:22:20 2022 +0500

    add ble state text output

commit 0ed45a9
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Tue Jan 18 15:48:15 2022 +0500

    typo fix

commit 477a3a7
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Tue Jan 18 10:36:19 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit d684988
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Tue Jan 18 10:36:09 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit e2f7e31
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Mon Jan 17 13:34:05 2022 +0500

    typo fix

commit fc246be
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Sat Jan 15 15:26:25 2022 +0500

    typo fix

commit ebbb31a
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Fri Jan 14 10:08:29 2022 +0500

    typo fix

commit 3afedca
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 12:34:39 2022 +0500

    time format

commit 471a4c9
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 12:27:10 2022 +0500

    time format

commit d3fd348
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 12:26:49 2022 +0500

    time format

commit e540d10
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 11:28:31 2022 +0500

    add patch

commit 7288301
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 22:08:07 2022 +0500

    add menue item

commit 4c58476
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 21:42:22 2022 +0500

    typo fix

commit 79273fe
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 20:48:06 2022 +0500

    typo fix

commit 1808a78
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 20:17:15 2022 +0500

    typo fix

commit 6dfa141
Author: Дмитрий Марков <markov@promobit.ru>
Date:   Wed Jan 12 20:12:09 2022 +0500

    typo fix

commit 88f0190
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 14:50:54 2022 +0500

    add terminal watchface
@JF002
Copy link
Collaborator

JF002 commented Feb 20, 2022

I manually squash-merged this branch in commit 69e4ab6.
Thanks for your work @13werwolf13 and everyone who helped and reviewed this PR!

@JF002 JF002 closed this Feb 20, 2022
@13werwolf13
Copy link
Author

I'm glad I was helpful to the community! Thank you to everyone who helped!

grad0s pushed a commit to aramcon-badge/InfiniTime that referenced this pull request Jun 25, 2022
…werwolf13 (https://github.com/13werwolf13). This PR adds a new Terminal watchface to InfiniTime!

Squashed commit of the following:

commit 23ea840b059c69667c8711265cecaf992791acb6
Author: Jean-François Milants <jf@codingfield.com>
Date:   Sun Feb 20 13:14:27 2022 +0100

    Terminal watch face : fix includes and a few code cleaning.

commit 3c244def25e3ad8e1f56d708fb0864c122059948
Merge: 4079086 138a6552
Author: Jean-François Milants <jf@codingfield.com>
Date:   Sun Feb 20 12:45:54 2022 +0100

    Merge branch 'develop' of https://github.com/13werwolf13/InfiniTime into 13werwolf13-develop

commit 138a65528a86799fd5c37f065023a92f222fe044
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:13:00 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.h

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 35156166b2f7589bf005ec7c7192a4226578f6d9
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:12:43 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 757ca2dd438f1f314267a8b81a6034c576f1d6be
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:12:30 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 60b6b4e5824d04faa3efa45173358d04fa68a368
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:12:20 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 6959d8c043013550a7a3e4e6588b234d3bb942b5
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:11:46 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 4d850281bedf342d0856da5eafc22e46d0767c56
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:11:17 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit af483bee33c225fcb03432db1eb14c0453df0ae7
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:10:57 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 6bc6c1a637be4e514ecd0097d1dc9e4aacdba1db
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:10:40 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.h

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 25fdafc6aba0d9e0173103501de3802af261e2ae
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:06:10 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 12e1b0f8c0202a7f62e3e1c297af850ce3526d13
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:05:44 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit e6c0f32056e9fea878d270d761607ac5ddc263b0
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:05:22 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.h

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 342ce8cd114f4af265078bc0cfa6b2d8831706d7
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:05:06 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 265fec5eeca27fcc1152a18e4af0273bcf119c46
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:04:06 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit b4669be38be0df2b6a3505d5f7a770c71636be60
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:03:29 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 471a84390957ded2ac23ebfe1cb99408e3783b0f
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:03:10 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit 6853166cf546a4ce561195eba01f1b1fd6d56420
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Wed Feb 2 09:02:51 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit bba34f69bfdd6b44f142c93644f71c9eda007290
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Sat Jan 22 12:32:41 2022 +0500

    some fixes

commit 74eea9f5800f273249846e6e1c887d15ba6eb10b
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Sat Jan 22 12:32:17 2022 +0500

    some fixes

commit 1e4a6763d73c3ba39c680ad25f90813e6a6a36d1
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Fri Jan 21 08:59:44 2022 +0500

    no errors, no warnings, no work..

commit eb8bd4dc4ecbbf61f1e0f725fd2116ee25319fd6
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 20 23:50:04 2022 +0500

    add ble state text output

commit fda1c088becb4a7f9ced451a0291694abe2249dc
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 20 22:25:35 2022 +0500

    add ble state text output

commit 68d3d9b343c0f37830bb640fab10b186faf73067
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 20 22:22:20 2022 +0500

    add ble state text output

commit 0ed45a9916787f68c0aa6bab9c97b090f2eebdd5
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Tue Jan 18 15:48:15 2022 +0500

    typo fix

commit 477a3a7f27c7486be2c8f985afab1f1739608fed
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Tue Jan 18 10:36:19 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit d6849888ea5cc152f04c5bf6fe2631e66296c357
Author: Марков Дмитрий <13werwolf13@mail.ru>
Date:   Tue Jan 18 10:36:09 2022 +0500

    Update src/displayapp/screens/WatchFaceTerminal.cpp

    Co-authored-by: NeroBurner <pyro4hell@gmail.com>

commit e2f7e318298b8a6f4d436cbbb1b92a738dacab7f
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Mon Jan 17 13:34:05 2022 +0500

    typo fix

commit fc246beb01d3feac4fd0b2fc9c45b38847e1d950
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Sat Jan 15 15:26:25 2022 +0500

    typo fix

commit ebbb31abf10ad9f61a8a7ecfdf29c2aaeaf33c19
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Fri Jan 14 10:08:29 2022 +0500

    typo fix

commit 3afedcaa28009f59e6960730e9349097ef455ea8
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 12:34:39 2022 +0500

    time format

commit 471a4c942f7e3cfd5c52bd61152ede770da5e026
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 12:27:10 2022 +0500

    time format

commit d3fd348de4b4a89c216a717de84fcc923cc099fe
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 12:26:49 2022 +0500

    time format

commit e540d103e3204649ff585742f8834d16136372d5
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Thu Jan 13 11:28:31 2022 +0500

    add patch

commit 728830178f31f71785c49cdc6b83daea4e0a7df6
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 22:08:07 2022 +0500

    add menue item

commit 4c5847669fa083f15ee3fdb404dadfdaef0f82aa
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 21:42:22 2022 +0500

    typo fix

commit 79273fe24f9162aca5508f07b17896149ad19839
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 20:48:06 2022 +0500

    typo fix

commit 1808a78ad94d0dfe97b6410a93ba30560de22f4b
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 20:17:15 2022 +0500

    typo fix

commit 6dfa141dca176789da4e978f008eb842d9ec515a
Author: Дмитрий Марков <markov@promobit.ru>
Date:   Wed Jan 12 20:12:09 2022 +0500

    typo fix

commit 88f01902325505a9206ced4504aae0762042535d
Author: Дмитрий Марков <13werwolf13@mail.ru>
Date:   Wed Jan 12 14:50:54 2022 +0500

    add terminal watchface
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants