From ce887a369b97fe567f3e8eedfbc50a90e9887eca Mon Sep 17 00:00:00 2001 From: Philip Howard Date: Wed, 11 Dec 2013 12:24:09 +0000 Subject: [PATCH] Added parenthesis onto setup functions --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 47630a1..f92ea19 100644 --- a/README.md +++ b/README.md @@ -29,11 +29,11 @@ Description incoming! **Usage:** import wiringpi2 - wiringpi2.wiringPiSetup // For sequential pin numbering, one of these MUST be called before using IO functions + wiringpi2.wiringPiSetup() // For sequential pin numbering, one of these MUST be called before using IO functions OR - wiringpi2.wiringPiSetupSys // For /sys/class/gpio with GPIO pin numbering + wiringpi2.wiringPiSetupSys() // For /sys/class/gpio with GPIO pin numbering OR - wiringpi2.wiringPiSetupGpio // For GPIO pin numbering + wiringpi2.wiringPiSetupGpio() // For GPIO pin numbering Setting up IO expanders (This example was tested on a quick2wire board with one digital IO expansion board connected via I2C):