SVHFingerManagerTest.cpp
Go to the documentation of this file.
1 //
3 // © Copyright 2022 SCHUNK Mobile Greifsysteme GmbH, Lauffen/Neckar Germany
4 // © Copyright 2022 FZI Forschungszentrum Informatik, Karlsruhe, Germany
5 //
6 // This file is part of the Schunk SVH Library.
7 //
8 // The Schunk SVH Library is free software: you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation, either version 3 of the License, or (at your
11 // option) any later version.
12 //
13 // The Schunk SVH Library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
16 // Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License along with
19 // the Schunk SVH Library. If not, see <https://www.gnu.org/licenses/>.
20 //
22 
23 //----------------------------------------------------------------------
30 //----------------------------------------------------------------------
31 
32 #include <chrono>
35 #include <thread>
36 
37 using namespace driver_svh;
38 
39 // testing serial interface of svh driver
40 int main(int argc, const char* argv[])
41 {
42  std::string serial_device_name = "/dev/ttyUSB0";
43 
44  SVHFingerManager finger_manager;
45  if (finger_manager.connect(serial_device_name))
46  {
47  SVHChannel test_channel = SVH_ALL;
48 
49  std::cout << "connected" << std::endl;
50 
51  finger_manager.resetChannel(test_channel);
52 
53  std::this_thread::sleep_for(std::chrono::seconds(2));
54 
55  std::cout << "Pinky is enabled: " << finger_manager.isEnabled(test_channel) << std::endl;
56  std::cout << "Pinky is homed: " << finger_manager.isHomed(test_channel) << std::endl;
57 
58  std::cout << "Enabling Pinky: " << finger_manager.enableChannel(test_channel) << std::endl;
59 
60 
61  std::this_thread::sleep_for(std::chrono::seconds(2));
62 
63  std::cout << "Pinky is enabled: " << finger_manager.isEnabled(test_channel) << std::endl;
64  std::cout << "Pinky is homed: " << finger_manager.isHomed(test_channel) << std::endl;
65 
66 
67  std::this_thread::sleep_for(std::chrono::seconds(10));
68 
69  std::cout << "after sleep" << std::endl;
70 
71  finger_manager.disconnect();
72  }
73 }
bool connect(const std::string &dev_name="/dev/ttyUSB0", const unsigned int &retry_count=3)
Open connection to SCHUNK five finger hand. Wait until expected return packages are received...
bool resetChannel(const SVHChannel &channel)
reset function for channel
bool isEnabled(const SVHChannel &channel)
returns true, if current channel has been enabled
bool isHomed(const SVHChannel &channel)
returns true, if current channel has been resetted
void disconnect()
disconnect SCHUNK five finger hand
bool enableChannel(const SVHChannel &channel)
enable controller of channel
int main(int argc, const char *argv[])


schunk_svh_library
Author(s): Georg Heppner, Lars Pfotzer, Felix Exner, Johannes Mangler, Stefan Scherzinger, Pascal Becker
autogenerated on Fri Apr 14 2023 02:26:23