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

Async control & api update #3

Merged
merged 23 commits into from
Jan 7, 2024
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
aff9e62
Basic impl. with a bugs
GreenWizard2015 Dec 28, 2023
f54a375
would this fix CI?
GreenWizard2015 Dec 28, 2023
c8c2e45
maybe now?
GreenWizard2015 Dec 28, 2023
c6003dc
last try
GreenWizard2015 Dec 28, 2023
815c496
pls?
GreenWizard2015 Dec 28, 2023
54b8e58
remove local and attempt to switch to unity framework
omonrise Dec 29, 2023
0f8ea31
Dependency Unity for testing should not be part of build dependencies…
psmgeelen Dec 29, 2023
5e0bbcf
remove unity from libdeps
omonrise Dec 29, 2023
4d1bab3
Merge branch 'feature/async_control' of https://github.com/psmgeelen/…
omonrise Dec 29, 2023
3288759
fix everything?
GreenWizard2015 Dec 29, 2023
7f01633
default env for platformio build
GreenWizard2015 Dec 29, 2023
6dd0463
configure CI to build only for Android
GreenWizard2015 Dec 29, 2023
7c12ef0
fix
GreenWizard2015 Dec 29, 2023
e2f62b6
fix typo
GreenWizard2015 Dec 29, 2023
7761f46
Separate out CI
psmgeelen Dec 29, 2023
7046cf4
Update user authentication logic
GreenWizard2015 Dec 30, 2023
89347f0
shared_ptr + return error as JSON
GreenWizard2015 Dec 30, 2023
8eb199d
Merge branch 'feature/async_control' of github.com:psmgeelen/projectt…
GreenWizard2015 Dec 30, 2023
63bee21
small rework
GreenWizard2015 Dec 30, 2023
311e314
extracted secrets from main.cpp
GreenWizard2015 Dec 30, 2023
75a7629
fix CI
GreenWizard2015 Dec 30, 2023
267322c
very big update. Reorganized the code, added a command processor, tests.
GreenWizard2015 Dec 30, 2023
eade444
prevent CORS issue...?
GreenWizard2015 Jan 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/platformio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- name: Install PlatformIO Core
run: pip install --upgrade platformio

- name: Build PlatformIO Project
- name: Run tests on the native platform
run: platformio test -e native

- name: Build PlatformIO Project for Android
GreenWizard2015 marked this conversation as resolved.
Show resolved Hide resolved
working-directory: ./controller/tea_poor
run: pio run
run: pio run -e uno_r4_wifi
Loading