Skip to main content

A Python Library For Kamibot

Project description

Package for Kamibot

install

pip install pyserial==3.5

check version

import pyKamibot as kamibot

# check version
print(kamibot.__version__)

exmaple

  1. LED
from pyKamibot import Kamibot

kamibot = Kamibot('COM3', 57600)

# LED (r, g, b)
kamibot.turn_led(200, 0, 0)

# ---------------------------------------------------
# Move on mapboard
# ---------------------------------------------------
for i in range(0, 100):
    kamibot.turn_led(200, 0, 0)
    kamibot.delay(1)
    kamibot.turn_led(0, 200, 0)
    kamibot.delay(1)
  1. Mapboard
kamibot.move_forward(1)

while True:
    kamibot.move_forward(1)
    kamibot.turn_left()
  • turn_right()
  • turn_back()
  1. Control Mode
  • go_forward_with_speed(right=100, left=100)
kamibot.go_forward_with_speed(right=0, left=100)
kamibot.delay(1)
kamibot.stop()
  • go_backward_with_speed(right=0, left=100)
kamibot.go_backward_with_speed(right=100, left=100)
kamibot.delay(1)
kamibot.stop()
  • go_with_speed(right=100, left=100, r_dir=0, l_dir=0) 0 : forward, 1: backward, 2: stop
kamibot.go_with_speed(right=100, left=100, r_dir=0x00, l_dir=0x00)
kamibot.delay(1)
kamibot.stop()
  • set_server_motor(pos=90) pos : degree
for i in range(0, 10):
    kamibot.set_server_motor(0)
    kamibot.delay(1)
    kamibot.set_server_motor(90)
    kamibot.delay(1)
  • ultrasonic() unit is cm
while True:
    val = kamibot.ultrasonic()
    print('distance :', val)
    kamibot.delay(1)

  • ir()
while True:
    val = kamibot.ir()
    print('ir :', val)
    kamibot.delay(1)

Contact

Part of the MoyaLab project - http://moyalab.com Copyright (C) 2019 Moyalab (immoyalab@gmail.com)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

pyKamibot-0.13-py3-none-any.whl (13.2 kB view details)

Uploaded Python 3

File details

Details for the file pyKamibot-0.13-py3-none-any.whl.

File metadata

  • Download URL: pyKamibot-0.13-py3-none-any.whl
  • Upload date:
  • Size: 13.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.10

File hashes

Hashes for pyKamibot-0.13-py3-none-any.whl
Algorithm Hash digest
SHA256 6168ce1914fb2ff4eb8dc3ac21860d71f9501132282d1b64a018fbd0a6396fd0
MD5 36801c707b03c1b6f3838a660fd09744
BLAKE2b-256 55a9f8200a3354485c793e0e1c331aa29169e16a22ed7ce41c1334dc388c941c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page