feat: added way to communicate 10 basic gestures #41
Reference in New Issue
Block a user
Delete Branch "feat/10-basic-gestures"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
ref: N25B-402
To verify:
Go to ui branch gesture uicb, and 10basic on cb and ri. changing (in the ui code) setTags(jsonRes["available_gestures"]
assigned to @2584433
added 3 commits
devaa6a90f4- Merge branch 'dev' of https://git.science.uu.nl/ics/sp/2025/n25b/pepperplus-cb...Compare with previous version
requested review from @9828273
left review comments
Should fix the pipeline and merge with dev before continuing with the rest of the threads.
marked the checklist item Style checks pass as completed
Test are up to date (new code is covered)is false for the robot endpoint (endpoints.robot.py), it has a 67% coverage with only about 25% of the new lines covered.Can be done with a switch statement; not high priority though.
marked the checklist item Documentation is up to date as completed
Fetching gestures returns an error in the CB:
raise JSONDecodeError("Expecting value", s, err.value) from None, resulting in a timeout error, so the UI doesn't get any tags.Note that a lot of these problems could come from the fact that this branch is 8 commits behind, you should probably merge and fix the global issues.
changed this line in version 3 of the diff
changed this line in version 3 of the diff
changed this line in version 3 of the diff
changed this line in version 3 of the diff
added 9 commits
dev955b3109- Merge branch 'dev' of https://git.science.uu.nl/ics/sp/2025/n25b/pepperplus-cb...Compare with previous version
added 1 commit
a96e332d- chore: cleanupCompare with previous version
added 1 commit
128e9b3c- chore: fixed sending stuff to uiCompare with previous version
changed the description
nah
resolved all threads
marked the checklist item Pipeline (tests) pass as completed
marked the checklist item Tests are up to date (new code is covered) as completed
UI gives an
Uncaught TypeError: can't access property "length", tags is undefineddue to mismatching fields; change the UI branchgestures-ui-cbto account for this:setTags(jsonRes["available_gesture_tags"]);=>setTags(jsonRes["available_gestures"]);, or change the CB to match the UI. :)Pull request closed