Merge branch 'feat/gesture-ui-cb' of git.science.uu.nl:ics/sp/2025/n25b/pepperplus-ui into feat/gesture-ui-cb
This commit is contained in:
@@ -11,10 +11,12 @@ export default function GesturePage() {
|
|||||||
|
|
||||||
async function getTags() {
|
async function getTags() {
|
||||||
try {
|
try {
|
||||||
const res = await fetch("http://localhost:8000/robot/get_available_gesture_tags");
|
// You can optionally use a query parameter: `commands/gesture/tags/?count=<number>`.
|
||||||
|
// This will yield a list of tags with that count.
|
||||||
|
const res = await fetch("http://localhost:8000/robot/commands/gesture/tags/");
|
||||||
if (!res.ok) throw new Error("Failed communicating with the backend.");
|
if (!res.ok) throw new Error("Failed communicating with the backend.");
|
||||||
const jsonRes = await res.json();
|
const jsonRes = await res.json();
|
||||||
setTags(jsonRes["tags"]);
|
setTags(jsonRes["available_gesture_tags"]);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error("Failed to fetch tags:", err);
|
console.error("Failed to fetch tags:", err);
|
||||||
}
|
}
|
||||||
@@ -29,7 +31,7 @@ export default function GesturePage() {
|
|||||||
const gesture = { endpoint: "actuate/gesture/tag", data: selectedTag };
|
const gesture = { endpoint: "actuate/gesture/tag", data: selectedTag };
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const res = await fetch("http://localhost:8000/robot/command", {
|
const res = await fetch("http://localhost:8000/robot/command/gesture", {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
headers: { "Content-Type": "application/json" },
|
headers: { "Content-Type": "application/json" },
|
||||||
body: JSON.stringify(gesture),
|
body: JSON.stringify(gesture),
|
||||||
|
|||||||
Reference in New Issue
Block a user