HEBI C++ API  3.12.2
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
mobile_io.hpp
Go to the documentation of this file.
1 #pragma once
2 
10 #include <array>
11 #include <bitset>
12 #include <memory>
13 
14 #include "group.hpp"
15 #include "group_feedback.hpp"
16 
17 namespace hebi {
18 
19 class Lookup;
20 
21 namespace util {
22 
23 // Wrapper around a mobile IO controller
24 class MobileIO {
25 public:
26  static constexpr size_t NumButtons = 8;
27 
28  enum class ButtonMode { Momentary = 0, Toggle = 1 };
29 
30  enum class ButtonState {
31  ToOff = -1, // Edge triggers; these occur if last + current state are different
32  Unchanged = 0, // Last + current state are the same
33  ToOn = 1 // Edge triggers; these occur if last + current state are different
34  };
35 
36  // Try to create mobile IO wrapper
37  static std::unique_ptr<MobileIO> create(const std::string& family, const std::string& name);
38 
39  // Try to create mobile IO wrapper using existing lookup
40  static std::unique_ptr<MobileIO> create(const std::string& family, const std::string& name, const Lookup& lookup);
41 
42  // Call to update the current state. Returns "true" if feedback was received within the timeout
43  // or not.
44  bool update(int32_t timeout_ms = Group::DEFAULT_TIMEOUT_MS);
45 
46  bool resetUI(bool acknowledge_send = true);
47 
48  // Outputs
49  // Note: one-indexed to match axes/buttons on the screen
50 
51  bool setAxisSnap(int axis_number, float snap_to, bool acknowledge_send = true);
52  bool disableAxisSnap(int axis_number, bool acknowledge_send = true) { return setAxisSnap(axis_number, std::numeric_limits<float>::quiet_NaN(), acknowledge_send); }
53  bool setAxisValue(int axis_number, float value, bool acknowledge_send = true);
54  bool setAxisLabel(int axis_number, const std::string& message, bool acknowledge_send = true);
55 
56  bool setButtonMode(int button_number, ButtonMode mode, bool acknowledge_send = true);
57  bool setButtonLed(int button_number, bool on, bool acknowledge_send = true);
58  // NB: needs support on mobile IO app side...
59  //bool setButtonLed(int button_number, hebi::Color color);
60  bool setButtonLabel(int button_number, const std::string& message, bool acknowledge_send = true);
61 
62  bool setLedColor(uint8_t r, uint8_t g, uint8_t b, bool acknowledge_send = true);
63 
64  bool appendText(const std::string& message, bool acknowledge_send = true);
65  bool clearText(bool acknowledge_send = true);
66 
67  // Return Feedback object specific to the mobile device (not GroupFeedback)
68  const hebi::Feedback& getLastFeedback() const { return fbk_[0]; };
69 
70  // Get AR Position
71  const Vector3f getArPosition() const { return fbk_[0].mobile().arPosition().get(); }
72 
73  // Get AR Orientation
74  const Quaternionf getArOrientation() const { return fbk_[0].mobile().arOrientation().get(); }
75 
76  // Get current state of axis; one-indexed to match axes on the screen
77  float getAxis(int axis) const;
78  // Get current state of button; one-indexed to match buttons on the screen
79  bool getButton(int button) const;
80 
81  // Difference between two IO states, useful for checking to see if a button
82  // has been pressed.
83  // Note: one-indexed to match buttons on the screen
84  ButtonState getButtonDiff(int button) const;
85 
99  bool sendLayout(const std::string& layout_file, int32_t timeout_ms = Group::DEFAULT_TIMEOUT_MS) const;
100 
114  bool sendLayoutBuffer(const std::string& layout_buffer, int32_t timeout_ms = Group::DEFAULT_TIMEOUT_MS) const;
115 
116 private:
117  MobileIO(std::shared_ptr<hebi::Group> group) : group_(std::move(group)), fbk_(group_->size()) {}
118 
119  std::shared_ptr<hebi::Group> group_;
120  hebi::GroupFeedback fbk_;
121 
122  std::bitset<NumButtons> buttons_{};
123  std::array<float, NumButtons> axes_{};
124 
125  std::bitset<NumButtons> prev_buttons_{};
126  std::array<float, NumButtons> prev_axes_{};
127 };
128 
129 } // namespace util
130 } // namespace hebi
A list of Feedback objects that can be received from a Group of modules; the size() must match the nu...
Definition: group_feedback.hpp:18
bool sendLayoutBuffer(const std::string &layout_buffer, int32_t timeout_ms=Group::DEFAULT_TIMEOUT_MS) const
Sends a layout to the MobileIO device from a string buffer, requesting delivery acknowledgment.
Definition: mobile_io.cpp:198
ButtonState getButtonDiff(int button) const
Definition: mobile_io.cpp:182
Structure to hold a 3-D floating point vector (i.e., x/y/z components)
Definition: vector_3_f.hpp:8
bool setAxisLabel(int axis_number, const std::string &message, bool acknowledge_send=true)
Definition: mobile_io.cpp:97
bool update(int32_t timeout_ms=Group::DEFAULT_TIMEOUT_MS)
Definition: mobile_io.cpp:30
Definition: arm.cpp:10
Structure to hold a floating point quaternion (i.e., w/x/y/z components)
Definition: quaternion_f.hpp:8
static const int32_t DEFAULT_TIMEOUT_MS
The default timeout for any send-with-acknowledgement or request operation is 500 ms.
Definition: group.hpp:86
const Vector3f getArPosition() const
Definition: mobile_io.hpp:71
static std::unique_ptr< MobileIO > create(const std::string &family, const std::string &name)
Definition: mobile_io.cpp:14
Feedback objects have various fields representing feedback from modules; which fields are populated d...
Definition: feedback.hpp:32
Definition: mobile_io.hpp:24
bool setButtonLed(int button_number, bool on, bool acknowledge_send=true)
Definition: mobile_io.cpp:117
bool appendText(const std::string &message, bool acknowledge_send=true)
Definition: mobile_io.cpp:154
bool setButtonLabel(int button_number, const std::string &message, bool acknowledge_send=true)
Definition: mobile_io.cpp:136
bool setButtonMode(int button_number, ButtonMode mode, bool acknowledge_send=true)
Definition: mobile_io.cpp:107
bool setLedColor(uint8_t r, uint8_t g, uint8_t b, bool acknowledge_send=true)
Definition: mobile_io.cpp:146
const hebi::Feedback & getLastFeedback() const
Definition: mobile_io.hpp:68
bool sendLayout(const std::string &layout_file, int32_t timeout_ms=Group::DEFAULT_TIMEOUT_MS) const
Sends a layout file to the MobileIO device, requesting delivery acknowledgment.
Definition: mobile_io.cpp:190
bool resetUI(bool acknowledge_send=true)
Definition: mobile_io.cpp:59
float getAxis(int axis) const
Definition: mobile_io.cpp:170
bool clearText(bool acknowledge_send=true)
Definition: mobile_io.cpp:162
bool getButton(int button) const
Definition: mobile_io.cpp:176
const Quaternionf getArOrientation() const
Definition: mobile_io.hpp:74
bool setAxisValue(int axis_number, float value, bool acknowledge_send=true)
Definition: mobile_io.cpp:87
ButtonMode
Definition: mobile_io.hpp:28
Maintains a registry of network-connected modules and returns Group objects to the user.
Definition: lookup.hpp:24
bool setAxisSnap(int axis_number, float snap_to, bool acknowledge_send=true)
Definition: mobile_io.cpp:77
bool disableAxisSnap(int axis_number, bool acknowledge_send=true)
Definition: mobile_io.hpp:52
ButtonState
Definition: mobile_io.hpp:30
static constexpr size_t NumButtons
Definition: mobile_io.hpp:26