From 94fdd86896854abd1e59b0bcb8d368070fd3b84b Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Fri, 29 Jan 2016 18:06:12 -0700 Subject: [PATCH] my9221: fixup groveledbar python example Signed-off-by: Jon Trulson Signed-off-by: Mihai Tudor Panu --- examples/python/my9221.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/python/my9221.py b/examples/python/my9221.py index 2fc51f26..39d84622 100644 --- a/examples/python/my9221.py +++ b/examples/python/my9221.py @@ -24,9 +24,9 @@ import time, sys, signal, atexit import pyupm_my9221 as upmMy9221 -# Instantiate a MY9221, we use D2 for the data, and D3 for the +# Instantiate a MY9221, we use D8 for the data, and D9 for the # data clock. This was tested with a Grove LED bar. -myLEDBar = upmMy9221.MY9221(2, 3) +myLEDBar = upmMy9221.GroveLEDBar(8, 9) # Exit handlers