Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
You are viewing an older revision! See the latest version
Homepage
<<code Some python code to run the RPC function on embedded on the card. >>
import numpy as np import serial import time
ser=serial.Serial(3,57600, parity='N',bytesize=8,stopbits=1, timeout=None, xonxoff=1)
for i in range(0,100): ser.write(b"/AnIn/run\n") print(time.clock(),ser.readline())
ser.close()
<<\code>