diff options
author | Daniel Campora <daniel@wipy.io> | 2015-09-18 13:05:56 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-09-21 22:30:11 +0200 |
commit | 660f8613fd8e38863998a9758d97eada0eebc47d (patch) | |
tree | 430fd6f583186ae3540b6a5a4062ecd4b7d90140 /tests/wipy | |
parent | 06d93b36f9a61c445cbda746ec4de19d5ed267d3 (diff) | |
download | micropython-660f8613fd8e38863998a9758d97eada0eebc47d.tar.gz micropython-660f8613fd8e38863998a9758d97eada0eebc47d.zip |
tests/wipy: Remove unneeded dependencies to pyb.Pin.
Diffstat (limited to 'tests/wipy')
-rw-r--r-- | tests/wipy/adc.py | 1 | ||||
-rw-r--r-- | tests/wipy/i2c.py | 1 | ||||
-rw-r--r-- | tests/wipy/spi.py | 2 |
3 files changed, 0 insertions, 4 deletions
diff --git a/tests/wipy/adc.py b/tests/wipy/adc.py index 50a2b3d722..67c83bfb5c 100644 --- a/tests/wipy/adc.py +++ b/tests/wipy/adc.py @@ -3,7 +3,6 @@ ADC test for the CC3200 based boards. ''' from pyb import ADC -from pyb import Pin import os machine = os.uname().machine diff --git a/tests/wipy/i2c.py b/tests/wipy/i2c.py index 57015767df..24afc5a082 100644 --- a/tests/wipy/i2c.py +++ b/tests/wipy/i2c.py @@ -4,7 +4,6 @@ A MPU-9150 sensor must be connected to the I2C bus. ''' from pyb import I2C -from pyb import Pin import os import pyb diff --git a/tests/wipy/spi.py b/tests/wipy/spi.py index dc3d946de2..c5f845e0e5 100644 --- a/tests/wipy/spi.py +++ b/tests/wipy/spi.py @@ -3,9 +3,7 @@ SPI test for the CC3200 based boards. ''' from pyb import SPI -from pyb import Pin import os -import pyb machine = os.uname().machine if 'LaunchPad' in machine: |