Esp32-RBGridUI
Library for creating UIs for the RBController app
Loading...
Searching...
No Matches
arm.h
Go to the documentation of this file.
1#pragma once
2
3#include "widget.h"
4
5namespace gridui {
6
9class Arm : public Widget {
10 template <typename Self, typename Finished>
12
13 using Widget::Widget;
14
15public:
16 double x() const {
17 return data().getDouble("armX");
18 }
19
20 double y() const {
21 return data().getDouble("armY");
22 }
23};
24
25};
double x() const
Definition arm.h:16
double y() const
Definition arm.h:20
const rbjson::Object & data() const
Definition widget.h:212
Definition arm.h:8