Large change that removes the duplicated MIT notice withe a spdx tag Signed-off-by: Thomas Ingleby <thomas.ingleby@intel.com>
13 lines
231 B
Python
13 lines
231 B
Python
#!/usr/bin/env python
|
|
|
|
# Author: Ron Evans (@deadprogram)
|
|
# Copyright (c) 2016 Intel Corporation.
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
import mraa
|
|
|
|
print (mraa.getVersion())
|
|
|
|
mraa.addSubplatform(mraa.GENERIC_FIRMATA, "/dev/ttyACM0");
|