All Projects → RoboticsKnowledgebase → roboticsknowledgebase.github.io

RoboticsKnowledgebase / roboticsknowledgebase.github.io

Licence: MIT license
Robotics Knowledgebase. The Wiki for Robot Builders.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
matlab
3953 projects
ruby
36898 projects - #4 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to roboticsknowledgebase.github.io

Awesome Dronecraft
Resources to fully understand how autonomous drones work.
Stars: ✭ 104 (+22.35%)
Mutual labels:  uav, drones
Inav Configurator
Stars: ✭ 243 (+185.88%)
Mutual labels:  uav, drones
Sapog
Sapog - advanced multiplatform ESC firmware
Stars: ✭ 139 (+63.53%)
Mutual labels:  uav, drones
Px4 Autopilot
PX4 Autopilot Software
Stars: ✭ 5,090 (+5888.24%)
Mutual labels:  uav, drones
Tello Nodejs
Interacting with the DJI/Ryze Tello using only node.js
Stars: ✭ 79 (-7.06%)
Mutual labels:  programming, drones
Paparazzi
Paparazzi is a free and open-source hardware and software project for unmanned (air) vehicles. This is the main software repository.
Stars: ✭ 1,178 (+1285.88%)
Mutual labels:  uav, drones
Starrypilot
A lightweight autopilot software for Pixhawk
Stars: ✭ 243 (+185.88%)
Mutual labels:  uav, drones
YAMSPy
Yet Another Multiwii Serial Protocol Python Interface... for Betaflight, iNAV, etc...
Stars: ✭ 47 (-44.71%)
Mutual labels:  uav, drones
source
A wiki of tutorials
Stars: ✭ 34 (-60%)
Mutual labels:  programming, wiki
trik-studio
TRIK Studio programming environment
Stars: ✭ 15 (-82.35%)
Mutual labels:  programming, robot
DroneDB
Free and open source software for aerial data storage.
Stars: ✭ 74 (-12.94%)
Mutual labels:  uav, drones
gobot
Golang framework for robotics, drones, and the Internet of Things (IoT)
Stars: ✭ 7,869 (+9157.65%)
Mutual labels:  robot, uav
Librepilot
This is the GitHub mirror for the LibrePilot source code. The main development is taking place at https://bitbucket.org/librepilot
Stars: ✭ 260 (+205.88%)
Mutual labels:  uav, drones
Gaas
Generalized Aviation: Open source autonomous aviation software platform, designed for fully autonomous drones and flying cars.
Stars: ✭ 1,377 (+1520%)
Mutual labels:  uav, drones
awesome-drones
A curated list of Awesome Drones resources
Stars: ✭ 44 (-48.24%)
Mutual labels:  uav, drones
Libuavcan
Portable reference implementation of the UAVCAN protocol stack in C++ for embedded systems and Linux.
Stars: ✭ 213 (+150.59%)
Mutual labels:  uav, drones
Rvd
Robot Vulnerability Database. An archive of robot vulnerabilities and bugs.
Stars: ✭ 87 (+2.35%)
Mutual labels:  robot, drones
public regulated data types
Regulated DSDL definitions for Cyphal (standard and third-party)
Stars: ✭ 62 (-27.06%)
Mutual labels:  uav, drones
pyuavcan
Python implementation of the Cyphal protocol stack.
Stars: ✭ 91 (+7.06%)
Mutual labels:  uav, drones
designpattern
Design pattern code example in Java
Stars: ✭ 48 (-43.53%)
Mutual labels:  programming

Overview

The Robotics Knowledgebase is the Wiki for Robot Builders. It exists to advance knowledge in the robotics discipline. We document and share application details left out of textbooks and academic papers.

This Knowledgebase holds knowledge essential to building working robots. We believe robots should be built to solve specific problems. We take a systems-based approach to creating them. We include Project Management practices to ensure project completion.

Contribution Quickstart Guide

New Entries

To submit an original article follow these steps:

  1. Fork this repository.
  2. Locate the appropriate directory for your submission in /wiki.
  3. Copy _templates/template.md into the directory.
  4. Write your article. We recommend the following options:
  1. Rename template.md to the subject of your article. The new name should be lowercase, have hyphens for spaces, and end with .md (this-is-an-example.md)
  2. Add a link to your article to _data/navigation.yml under the wiki heading.
  • Do not modify the main or docs lists.
  1. Submit a pull request to the Robotics Knowledgebase.
  • If you're working from your device, don't forget to add, commit, and push your changes first.
  1. Editors may request changes before they accept your pull request. Use their feedback to improve your entry and resubmit.

Improving Articles

If you spot a mistake (or think that you have an improvement to an article), create an issue to discuss your recommended changes.

Keeping your Fork Updated

Syncing a fork is accomplished through git on your local device. You should already have Git installed and cloned your fork to your computer.

  1. Navigate to the working directory of your local project.
  2. Configure a remote that points to the upstream repository. On your Linux device, use:
  • git remote add upstream https://github.com/RoboticsKnowledgebase/roboticsknowledgebase.github.io.
  • This only needs to be done once.
  1. Use git remote -v to verify that the upstream repository is listed.
  2. Fetch the latest commits from the upstream repository. These will be stored in a local branch upstream/master:
  • git fetch upstream
  1. Check out your fork's local master branch:
  • git checkout master
  1. This brings your fork's master branch into sync with the upstream repository, without losing your local changes:
  • git merge upstream/master

Clear Changes and Update your Fork

This method is used specifically to erase all changes to your fork and replace it with the most updated copy of the Wiki.

  1. Follow steps 1-5 from Keeping your Fork Updated above.
  2. Reset your local repository:
  • git reset --hard upstream/master
  1. Force the new repository to overwrite your remote fork:
  • git push origin master --force

Site Structure

Supporting technology

The Robotics Knowledgebase makes use of the following:

Directories

The wiki itself is contained in the /wiki folder. The /docs folder exists to contain future documentation on contributing and supporting the wiki. The wiki contains the following categories:

  • Actuation
    • Topics related to the moving components including motors and controls.
  • Common Platforms
    • Covers common hardware and software frameworks used in robotics. ROS is included here.
  • Computing
    • Topics related to hardware brains for robotics including on-board computers and cluster computing.
  • Fabrication
    • Topics related to techniques and tools for fabricating a robot.
  • Interfacing
    • Covers means of interfacing with a robot outside of networking.
  • Networking
    • Topics related to communications infrastructure for robotics including programming and wireless technologies.
  • Programming
    • General programming topics including languages and practices.
  • Project Management
    • Topics related to project management practices.
  • Sensing
    • Covers topics related to sensors including computer vision and cameras.
  • State Estimation
    • Topics related to the position and orientation of a robot including navigation, localization, and mapping.
  • System Design and Development
    • Covers topics related to Systems Engineering.
  • Tools
    • Useful hardware and software for robotics not used directly in the robot itself.

Directory Structure

Individual subfolders should contain both an /assets folder (for supporting files including images) and an index.md file.

Future Work

This Knowledgebase is an evolving project. There are numerous areas for improvement in both content and site features.

Needed topics

  • Introduction to planning your robotics project
  • Updated overview of single-board computers (/wiki/computing/single-board-computers.md)
  • Mobility Overview (put in /actuation)
  • Manipulation Overview (put in /actuation)
  • State Estimation Overview
  • System Engineering Overview
  • Using GPUs for Computer Vision
  • Using GPUs for Machine Learning
  • V-model

Todo

  • Logo for Robotics Knowledgebase
  • Writing & style standards
  • Link to Github
  • Collapsed Navigation for sidebar
  • Separate repositories for content and technical files
  • Dynamic Navigation Generation
  • Default template
  • Implement Math Support
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].