mraa: rename from maa to mraa
[contrib/mraa.git] / examples / python / blink-io8.py
index b7da552..896d2a8 100644 (file)
 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
-import pymaa as maa
+import pymraa as mraa
 import time
 
-x = maa.Gpio(8)
-x.dir(maa.DIR_OUT)
+x = mraa.Gpio(8)
+x.dir(mraa.DIR_OUT)
 
 while True:
     x.write(1)