techonsteroids

Breaking

Post Top Ad

Responsive Ads Here

Post Top Ad

Sunday, September 10, 2017

Messaging Morse Code with TL-MR3040 Leds

8 years ago 0

#Install the kmod-ledtrig-morse opkg install kmod-ledtrig-morse #list your leds ls -1 /sys/class/leds/ #enable morse code echo morse > /sys/class/leds/tp-link\:green\:lan/trigger echo morse > /sys/class/leds/tp-link\:green\:wla...

Read More

HOWTO Create a WiFi Repeater out of a TL-MR3040

8 years ago 0

Flash the TL-MR3040 with the latest OpenWRT Firmware available here Upload the repeater mode configurations  link here Create a USB partition (SWAP+Ext4) Install relayd opkg update opkg install relayd /etc/init.d/relayd enable...

Read More

Friday, September 1, 2017

DIY Home WiFi Technology Development Kit

8 years ago 1

Devices and tools for your DIY Home WiFi Technology Development Kit TO BUY... 1 WiFi Modem/Router (* Optional if you already have it) 2 TP-LINK TL-MR3040 (* Mandatory. These are the devices we are going to work with) htt...

Read More

Monday, July 31, 2017

Post a message on Slack with bash

8 years ago 0

Create a Slack Accoount Create a Slack Team Create a Slack App Create Webhooks Create bash script #!/bin/sh curl --data {\"text\":\"Hello,World!\"} --header Content-type:application/json --request POST -k htt...

Read More

Sunday, July 30, 2017

Diagnostic for your WiFi Extender

8 years ago 1

#Check your Local and Public  ifconfig | sed -En 's/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*).*/\2/p'  & #Just public... ifconfig wlan0 | sed -En 's/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*).*/\2/p' & #Just Local ifconfig...

Read More

Friday, July 14, 2017

Install PHP, MySQL, JSON on your TL-MR3040 with OpenWRT

8 years ago 0

Be sure that you have internet connection on your TL-MR3040 with OpenWRT installed. Then Type opkg update #Install uhttpd opkg install uhttpd uci set uhttpd.llmp=uhttpd uci set uhttpd.llmp.listen_http=81 uci set uhttpd.llmp.home=/srv/...

Read More

Sunday, May 28, 2017

How to Create a script which starts at boot of your TL-MR3040

8 years ago 0

Write this as the first line of your script: #!/bin/sh /etc/rc.common Include into your script the command: START=30 STOP=80 boot() {                           #your commands here } Copy your script into  /etc/init.d/ di...

Read More
Page 1 of 3123Next �Last

...

Post Top Ad