Playing with GPIO and sensors on OpenWrt

,

1

Here are a few examples of using GPIO as input and output on a Tplink TL-WR 703n. This router has three easily accessible GPIO pins you can use.
Most of the time you can find maped GPIO pins on the OpenWrt table of hardware, for 703n look here!

To conect 5V sensors that are intended for use with Arduino you need 5V, GND and a voltage divider to get a signal in 3.3V range instead of 5V, Just to be on the safe side I connected a 1K resistor between the voltage devider and the sensor to limit the current passing trough the GPIO.
Next connect the 5V to the VCC on the sensor, ground to sensor GND and voltage devider GND, Signal output from the sensor to  the voltage devider input and the voltage devider output to the current limiting ressistor and then to GPIO.
To be safe you can use a multimeter to mesure voltage before connecting the 3,3V signal to the GPIO pin.

Voltage devider:

voltage devider

OpenWrt setup

I use GPIO 29 so for input the setup looks like this:

/etc/rc.local:

# Put your custom commands here that should be executed once
# the system init finished. By default this file does nothing.
echo “29” > /sys/class/gpio/export;
echo “in” > /sys/class/gpio/gpio29/direction
exit 0

And you can get the state of the pin with:

      cat /sys/class/gpio/gpio29/value

And this is what you get:

(some sensors  send inverted values, its up to you to use what you need)

root@OpenWrt:~# cat /sys/class/gpio/gpio29/value
1
root@OpenWrt:~# cat /sys/class/gpio/gpio29/value
0
root@OpenWrt:~# cat /sys/class/gpio/gpio29/value
1

 

Input:

E18-D80NK Optical sensor:

3

Arduino compatible moisture sensor:

5

The moisture sensor has a neat analog-digital converter with adjustible treshold that can be used on loads of analog sensors like piezos or microphones:
Arduinoadcconverter

Arduino compatible PIR sensor:

4

Reed switch:

The reed switch has only two contacts 5V and signal output,so in this case you connect the ground only to the voltage devider.
2

Output:

And /etc/rc.local for output

# Put your custom commands here that should be executed once
# the system init finished. By default this file does nothing.
echo “29” > /sys/class/gpio/export;
echo “out” > /sys/class/gpio/gpio29/direction
exit 0

And than you can control the output with 1 or 0:

echo “1” > /sys/class/gpio/gpio29/value

 

Control a EM reley:

driver

6out

 

There is a way to get analog reedings on GPIO with a simple RC circuit.

 

Skills

Posted on

05/04/2014

Leave a Reply to kotvew Cancel reply

Your email address will not be published.

Pin It on Pinterest

Share This