From a0efbec6253e88421394584fa003a080c6b9abcd Mon Sep 17 00:00:00 2001 From: Brendan Le Foll Date: Fri, 25 Apr 2014 09:10:27 +0100 Subject: [PATCH] hello_gpio.py: fix python example Signed-off-by: Brendan Le Foll --- examples/python/hello_gpio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python/hello_gpio.py b/examples/python/hello_gpio.py index 022a528..a5913f9 100644 --- a/examples/python/hello_gpio.py +++ b/examples/python/hello_gpio.py @@ -26,5 +26,5 @@ import pymaa x = pymaa.gpio_t() print(x.pin) -gpio_init(x, 20) +pymaa.gpio_init(x, 20) print(x.pin) -- 2.7.4