mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 08:55:19 +02:00
c8a92d23e8
rssileds is a small user-space process to control LEDs by polling the signal quality reported by a WiFi interface. By using the iwinfo library, rssileds is independent of the WiFi driver used. It supports pwm controlled LEDs and may by used to nicely fade through all colors in real-time of the rainbow while only wasting very little CPU time and a small constant amount of system memory. An example configuration for the ALL0258N will follow in the next patch. This is a slightly improved version of rssileds, now quality values are in percent and stuff is written to syslog. Signed-off-by: Daniel Golle <dgolle@allnet.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33163 3c298f89-4303-0410-b956-a3cf2f4a3e73
48 lines
1.0 KiB
Makefile
48 lines
1.0 KiB
Makefile
#
|
|
# Copyright (C) 2011-2012 Daniel Golle <dgolle@allnet.de>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=rssileds
|
|
PKG_VERSION:=0.1
|
|
PKG_RELEASE:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/rssileds
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=RSSI real-time LED indicator
|
|
DEPENDS:=libiwinfo
|
|
endef
|
|
|
|
define Package/rssileds/description
|
|
A small process written in C to update the signal-strength indicator LEDs
|
|
endef
|
|
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(TARGET_CC) $(TARGET_CFLAGS) -Wall -liwinfo \
|
|
-o $(PKG_BUILD_DIR)/rssileds $(PKG_BUILD_DIR)/rssileds.c
|
|
endef
|
|
|
|
define Package/rssileds/install
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/rssileds.init $(1)/etc/init.d/rssileds
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/rssileds $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,rssileds))
|