Large change that removes the duplicated MIT notice withe a spdx tag Signed-off-by: Thomas Ingleby <thomas.ingleby@intel.com>
36 lines
605 B
Python
36 lines
605 B
Python
#!/usr/bin/env python
|
|
|
|
# Author: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
|
|
# Copyright (c) 2018 Linaro Ltd.
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Example Usage: Toggles GPIO 23 and 24 continuously in an alternative pattern
|
|
|
|
import mraa
|
|
import time
|
|
|
|
# initialise gpio 23
|
|
gpio_1 = mraa.Gpio(23)
|
|
|
|
# initialise gpio 24
|
|
gpio_2 = mraa.Gpio(24)
|
|
|
|
# set gpio 23 to output
|
|
gpio_1.dir(mraa.DIR_OUT)
|
|
|
|
# set gpio 24 to output
|
|
gpio_2.dir(mraa.DIR_OUT)
|
|
|
|
# toggle both gpio's
|
|
while True:
|
|
gpio_1.write(1)
|
|
gpio_2.write(0)
|
|
|
|
time.sleep(1)
|
|
|
|
gpio_1.write(0)
|
|
gpio_2.write(1)
|
|
|
|
time.sleep(1)
|