How to operate mbed by python (Windows7) / mbedをpythonで操作するには(Windows7)

Abstruct / 概要

You can write source code of mbed not with C++ but with python.

mbedのソースコードをC++ではなくpythonで書くことができます。

For example, the movie next is the scene the python code below is working.

例えば次の動画はその後のpythonコードが動いているところです。

import sys, mbed
while True:
>>>>	set_led(1,1)
>>>>	wait(1000)
>>>>	set_led(1,0)
>>>>	wait(1000)

Preparation / 準備するもの

執筆中

Procedure / 作業

執筆中


Please log in to post comments.