Coder Social home page Coder Social logo

willee2015 / oscc-joystick-commander Goto Github PK

View Code? Open in Web Editor NEW

This project forked from polysync/oscc-joystick-commander

0.0 1.0 0.0 97 KB

Joystick Commander is an example application for OSCC

License: MIT License

CMake 1.92% C 94.50% C++ 3.58%

oscc-joystick-commander's Introduction

Joystick commander is an example application designed to show how the Open Source Car Control API can be used to recieve reports from and send commands to a drive by-wire enabled vehicle.

Using an SDL2 supported game controller, inputs are normalized and converted to relative torque, throttle, and brake commands. This application also demonstrates registering callback functions to recieve and parse OSCC reports as well as vehicle state reports from the car's OBD-II CAN network.

For more information about OSCC, check out our github.

Pre-requisites:

  • OSCC's API and firmware modules are both required, and the modules must be installed on the vehicle
  • The socketcan driver for USB and PCIe CAN interfaces is required, and is pre-installed on most Linux systems
  • An SDL2 supported game controller is also required, and the SDL2 library must be pre-installed
  • A CAN interface adapter, such as the Kvaser Leaf Light, is also necessary in order to connect the API to the OSCC control CAN network via USB

This application has been tested with a Logitech F310 gamepad and a wired Xbox 360 controller, but should work with any SDL2 supported game controller. Controllers with rumble capabilities will provide feedback when OSCC is enabled or disabled.

Xbox 360 Wired Controller

Logitech Gamepad F310

Install the SDL2 library with the command below.

sudo apt install libsdl2-dev

Getting OSCC & Joystick Commander

If you haven't already, install the OSCC hardware modules onto the target vehicle.

Once the hardware is installed and the firmware is flashed, clone and enter the joystick commander repo:

git clone [email protected]:PolySync/oscc-joystick-commander.git
cd oscc-joystick-commander

From within the joystick commander directory, clone the OSCC repo:

git submodule update --init

This will clone into a directory called oscc where CMake will look for the OSCC API when it builds joystick commander.

Building Joystick Commander

From the root directory, create a build directory inside of it:

mkdir build
cd build

To generate Makefiles, tell cmake which vehicle to build for by supplying the appropriate build flag:

Vehicle Flag
Kia Soul Petrol -DKIA_SOUL=ON
Kia Soul EV -DKIA_SOUL_EV=ON

For example, if you want to build joystick commander for the petrol Kia Soul:

cmake .. -DKIA_SOUL=ON
make

The vehicle build flag enables the API to swap between different vehicle specifications, allowing the firmware and API to remain car agnostic.

After initializing the CAN interface, use the channel number to start joystick commander and begin sending commands to the OSCC modules.

For example with a Kvaser Leaf Light attached, using a bitrate of 500000 and a CAN channel of 0:

 sudo ip link set can0 type can bitrate 500000
 sudo ip link set up can0

You would then run:

./oscc-joystick-commander 0

For more information on setting up a socketcan interface, check out this guide.

Controlling the Vehicle with the Joystick Gamepad

Once the joystick commander is up and running you can use it to send commands to the Arduino modules. Use the left trigger to brake, the right trigger for throttle, and the left gamepad axis to control steering.

The vehicle will only respond to commands if control is enabled with the start button. The back button disables control.

Application Details

main

Entry point of joystick commander. Initializes OSCC interface, checks for controller updates in 50 ms intervals, and closes the interface when the program terminates. This contains the applications main loop.

joystick

joystick.c contains the functionality necessary to initialize and interact with the game controller.

commander

The commander files contain the joystick commander's interactivity with the OSCC API. It demonstrates opening and closing the CAN channel communications with OSCC's control CAN network, sending enable/disable commands to the modules through the API, retrieving OSCC reports through callback functions, and sending commands through the OSCC publish functions.

Using OSCC API

To use the OSCC API in your applications, you need to include any relevant header files.

  • The can message protocols are located in oscc/api/include/can_protocols/
    • These specify the structs we use for steering, throttle, brake, and fault reports
  • Vehicle specific macros and values are located in oscc/api/include/vehicles/
    • You only need to include vehicles.h, which will include the relevant vehicle-specific header depending on the option provided to CMake (e.g., -DKIA_SOUL=ON will include kia_soul.h)
  • oscc/api/include/oscc.h includes the functionality to interface with the OSCC API

License Information

MIT License

Copyright (c) 2017 PolySync Technologies

Please see LICENSE.md for more details.

Contact Information

Please direct questions regarding OSCC and/or licensing to [email protected].

Distributed as-is; no warranty is given.

Copyright (c) 2017 PolySync Technologies, Inc. All Rights Reserved.

oscc-joystick-commander's People

Contributors

vertexmachina avatar rebpdx avatar cotos avatar nathanaschbacher avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.