Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

A Python interface to control and communicate with mBot robot kit

License

Notifications You must be signed in to change notification settings

brandonbiggs/python-for-mbot

Open more actions menu
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
55 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Library for mBot

Table of contents

Description

A Python interface to control and communicate with mBot robot kit from Makeblock

This has been tested with:

  • the Raspberry PI.
  • the Intel Edison.

It works on Linux, Windows 7/10 and OS X.

Software Dependencies

Prepare for Makeblock's Bots

  1. Download the source from the git https://github.com/Makeblock-official/Makeblock-Libraries

  2. copy the makeblock folder to your arduino default library. Your Arduino library folder should now look like this (on Windows): [arduino installation directory]\libraries\makeblock\src (on MACOS): [arduino Package Contents]\contents\Java\libraries\makeblock\src

  3. Open the Arduino Application. (If it's already open, you will need to restart it to see changes.)

  4. Click "File-> Examples". Here are firmwares for Makeblock's bots in "MakeBlockDrive->Firmware_for_mBlock".

  5. Upload the Firmware to your bot.

Installation

install python 2.7.x / 3.x ( http://python.org/downloads )

[sudo] pip install cython
[sudo] pip install pyserial
[sudo] pip install hidapi

Usage

 git clone https://github.com/xeecos/python-for-mbot

Enter the folder "python-for-mbot"

Edit lightsensor.py

from lib.mBot import *

def onLight(value):
    print("light = ",value)

if __name__ == '__main__':
    bot = mBot()
    bot.startWithSerial("COM15") or bot.startWithHID()
    while(1):
      bot.requestLightOnBoard(1,onLight)
      sleep(0.5)

using usb serial or bluetooth serial:

change the serial port name "COMX or /dev/tty.XXX" for your mBot on system

bot.startWithSerial("COM15")

using wireless HID:

bot.startWithHID()

running:

[sudo] python lightsensor.py

Learn more from Makeblock official website http://www.makeblock.com

About

A Python interface to control and communicate with mBot robot kit

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%
Morty Proxy This is a proxified and sanitized view of the page, visit original site.