Giter Club home page Giter Club logo

ev3dev-c's Introduction

logo

VERSION

ev3dev-c    1.0c2
            2017-10-13

kernel      4.4.87-22-ev3dev-ev3

WHAT IS IT?

ev3dev-c is a C library for LEGO MINDSTORMS EV3 Debian Linux which wraps access to the EV3 hardware.

The library also supports remote access to the EV3 brick over a network. So, if you configure WLAN on the brick, you can control the EV3 hardware from a remote computer, for example, running under Windows.

GETTING STARTED

Before you start, make sure that you have opened an SSH connection to your EV3 brick.

You need to install the compiler and other tools:

sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install git

Then, clone the library repository and its submodules to the directory of your choice, such as "/home/robot/ev3dev-c":

cd /home/robot/
git clone https://github.com/in4lio/ev3dev-c.git
cd ev3dev-c/
git submodule update --init --recursive

Compile and install static and shared libraries:

cd source/ev3/
make
sudo make install
make shared
sudo make shared-install

It's the right time to take a look at a small example. "hello.c" outputs a greeting as well as toggles the left LED color:

cd ../../eg/hello/
more ./hello.c

Let's compile and run this program. Note that we link our example with a static library:

gcc hello.c -lev3dev-c -o hello
./hello

See also – "Getting Started with C"

PYTHON, RUBY and PERL

Python, Ruby and Perl libraries are automatically generated from the C library using SWIG tool.

Use pip to install ev3dev-c Python package:

pip install ev3dev-c

ev3dev-c Python package contains the following binary modules:

  • "_ev3.pyd" – for remote control from Windows (x86)
  • "_ev3.so" – for LEGO MINDSTORMS EV3 Debian

You have to install "python-dev", "ruby-dev" and "libperl-dev" packages to build the corresponding libraries.

GET HELP

Documentation generated by Doxygen

FAQ

What are unusual ".yu", ".yu-с" and ".yu-h" files for?

ev3dev-c is written using yupp lexical preprocessor – but don't panic – the generated source files in C also included.

How can I see some examples

Name Description
drive.c Comprehensive example based on coroutines
remote.c IR remote control using "brick" simplified library
remote.py Use of "brick" library in Python
port.c Use of EV3 ports
sensor.c TOUCH and COLOR sensors example
tacho.c TACHO motor running for 5 sec
dc.c Use of a DC motor
servo.c SERVO motor example
light.c LEDs blinking example
rcx_led.c Use of a RCX LED

Further examples in C...

Similar examples also available in Python, Ruby and Perl.

How to make an example

For instance, to compile "light.c" example:

cd ev3dev-c/eg/light/
make

./Debug/light

or, if you are running Windows:

.\Debug\mingw\light.exe

How to control the EV3 hardware remotely

Read here...

How to use Docker for Cross-Compilation

Read here...

How to make and install STATIC library

cd ev3dev-c/source/ev3/
make
sudo make install

How to make and install SHARED library

cd ev3dev-c/source/ev3/
make shared
sudo make shared-install

How to use SHARED library

cd ev3dev-c/eg/port/
gcc port.c -lev3dev-c -o port

./port

GIT

Run the following on your command-line to clone the library repository and its submodules:

git clone https://github.com/in4lio/ev3dev-c.git
cd ev3dev-c/
git submodule update --init --recursive

Pull the latest library and its submodules:

cd ev3dev-c/
git pull origin master
git submodule foreach git pull origin master

CONTACT

Please feel free to contact me at [email protected] if you have any questions about this library.

LICENSE

Please see the file called "LICENSE".

ev3dev-c's People

Contributors

in4lio avatar bjacquot 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.