ROS-Mobile-Android-master

所属分类:机器人/智能制造
开发工具:JavaScript
文件大小:28683KB
下载次数:1
上传日期:2021-01-28 10:48:29
上 传 者恒星流星
说明:  在官方rosjava包基础上,初步实现了一个安卓APP,以远程控制机器人。
(Based on the official rosjava package, an android app is initially implemented to remotely control the robot.)

文件列表:
.idea (0, 2020-11-17)
.idea\.name (10, 2020-11-17)
.idea\codeStyles (0, 2020-11-17)
.idea\codeStyles\Project.xml (4432, 2020-11-17)
.idea\compiler.xml (170, 2020-11-17)
.idea\inspectionProfiles (0, 2020-11-17)
.idea\inspectionProfiles\Project_Default.xml (1464, 2020-11-17)
.idea\jarRepositories.xml (3031, 2020-11-17)
.idea\misc.xml (3927, 2020-11-17)
.idea\runConfigurations.xml (564, 2020-11-17)
.idea\statistic.xml (246, 2020-11-17)
DesignMockups (0, 2020-11-17)
DesignMockups\9dots.png (8209, 2020-11-17)
DesignMockups\9dotsBlue.png (8589, 2020-11-17)
DesignMockups\detailsPage.png (28979, 2020-11-17)
DesignMockups\layoutPage.png (58687, 2020-11-17)
DesignMockups\masterPage.png (30531, 2020-11-17)
DesignMockups\masterPageLight.png (33238, 2020-11-17)
DesignMockups\rosLogo.png (18972, 2020-11-17)
app (0, 2020-11-17)
app\build.gradle (2215, 2020-11-17)
app\proguard-rules.pro (751, 2020-11-17)
app\release (0, 2020-11-17)
app\release\app-release.apk (6831198, 2020-11-17)
app\release\output.json (249, 2020-11-17)
app\src (0, 2020-11-17)
app\src\main (0, 2020-11-17)
app\src\main\AndroidManifest.xml (1567, 2020-11-17)
app\src\main\ic_launcher-web.png (20560, 2020-11-17)
app\src\main\java (0, 2020-11-17)
app\src\main\java\com (0, 2020-11-17)
app\src\main\java\com\schneewittchen (0, 2020-11-17)
app\src\main\java\com\schneewittchen\rosandroid (0, 2020-11-17)
app\src\main\java\com\schneewittchen\rosandroid\domain (0, 2020-11-17)
app\src\main\java\com\schneewittchen\rosandroid\domain\RosDomain.java (3991, 2020-11-17)
app\src\main\java\com\schneewittchen\rosandroid\model (0, 2020-11-17)
... ...

# ROS-Mobile ROS-Mobile is an [Android](https://www.android.com/) application designed for dynamic control and visualization of mobile robotic system operated by the Robot Operating System ([ROS](http://wiki.ros.org/)). The application uses ROS nodes initializing publisher and subscriber with standard ROS messages. The overall code architecture pattern is Model View ViewModel ([MVVM]([https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93viewmodel](https://en.wikipedia.org/wiki/Model–view–viewmodel))), which stabilizes the application and makes it highly customizable. For a detailed overview of the functionality, we refer to our [wiki](https://github.com/ROS-Mobile/ROS-Mobile-Android/wiki). - Current stable Version: 1.1.1 ## Cite If you use ROS-Mobile for your research, please cite ``` @article{rottmann2020ros, title={ROS-Mobile: An Android application for the Robot Operating System}, author={Rottmann, Nils and Studt, Nico and Ernst, Floris and Rueckert, Elmar}, journal={arXiv preprint arXiv:2011.02781}, year={2020} } ``` ## Requirements - Mobile Android Device with Android Version 5.0 (Lollipop) or higher - Android Studio Version 3.6.1 or higher (if built from source) ## Installing Instructions There are three different ways for installing ROS-Mobile onto your mobile device: Built from source, install current apk, download from Google Playstore. We highly recommend to use the download function from the Google Playstore. ##### Built from Source: - Install Android Studio Version 3.6.1 or higher - Download the complete repository (Master Branch) and open it via Android Studio - Built the Code (Make Project Button), connect your mobile device to your PC and install the Software (Run 'app'). Make sure you activated the developer options and adb debugging on your mobile device and installed all required drivers for usb and adb. ##### Install current APK: - Download the current ROS-Mobile version as [apk file](https://github.com/ROS-Mobile/ROS-Mobile-Android/blob/master/app/release/app-release.apk) and store it in an easy-to-find location onto your mobile device - Allow third-party apps on your device. Therefore go to **Menu > Settings > Security** and check **Unknown Sources** - Go now to the apk file, tap it, then hit install ##### Download from Google Playstore: - Simply go to the [Google Playstore Website](https://play.google.com/store/apps/details?id=com.schneewittchen.rosandroid) of the ROS-Mobile app and download it. It will be installed automatically ## Introduction Video [![Introduction Video](http://img.youtube.com/vi/T0HrEcO-0x0/0.jpg)](http://www.youtube.com/watch?v=T0HrEcO-0x0) ## Currently available ROS Nodes The following Nodes are currently supported by ROS-Mobile. For a comprehensive overview over the functionality of each node have a look into [Nodes Description](https://github.com/ROS-Mobile/ROS-Mobile-Android/wiki/ROS-Nodes) in the wiki. Additional Nodes will be available in upcoming Versions or can be easily added independently. See the [How to add your own Nodes](https://github.com/ROS-Mobile/ROS-Mobile-Android/wiki/How-to-contribute%3F#add-your-own-nodes) section in the wiki. - Joystick (geometry_msgs/Twist) - GridMap (nav_msgs/OccupancyGrid) - Camera (sensor_msgs/Image) - Gps (sensor_msgs/NavSatFix) ## Short Example Usage

Manually map an apartment environment using a differential drive robot. Therefore, we connected the application with the ROS master running the differential drive robot over wireless LAN by inserting the correct IP address in the *MASTER* configuration tab, first figure. Adding ROS nodes in the *DETAILS* tab, second figure and third figure, enables the control of the differential drive robot via a joystick method sending *geometry\_msgs/Twist* to a *cmd\_vel* topic and the visualization of the generated occupancy grid map by subscribing to the *map* topic via a gridmap method. In the *VIZ* tab, most right figure, the recorded occupancy grid map is displayed as well as the joystick. The joystick can be used via touch for sending control inputs over the *cmd\_vel* topic to the differential drive robot. For a more detailed examples, we refer to our [wiki](https://github.com/ROS-Mobile/ROS-Mobile-Android/wiki/Example-Applications). ## License The MIT License (MIT) Copyright (c) 2020 Nils Rottmann, Nico Studt Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ## Contributor / Maintainer [Nico Studt](https://torellin.github.io/), [Nils Rottmann](https://nrottmann.github.io/)

近期下载者

相关文件


收藏者