├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── bin ├── BLECommand └── BLEServer ├── install ├── 05-UpgradeBT.sh ├── 05-UpgradeInstall.sh ├── 06-UpgradePerl.sh ├── DEBUGGING.txt └── rc.local.SAMPLE ├── lib └── Site │ ├── BLEInfo.pm │ ├── GATTTable.pm │ ├── ParseData.pm │ ├── Process.pm │ ├── RasPiUtils.pm │ └── WSServer.pm └── public_html ├── BLEServer.css ├── BLEServer.js ├── favicon.ico ├── images ├── Back.png ├── Config.png └── Folder.png ├── index.html └── success.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/README.md -------------------------------------------------------------------------------- /bin/BLECommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/bin/BLECommand -------------------------------------------------------------------------------- /bin/BLEServer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/bin/BLEServer -------------------------------------------------------------------------------- /install/05-UpgradeBT.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/install/05-UpgradeBT.sh -------------------------------------------------------------------------------- /install/05-UpgradeInstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/install/05-UpgradeInstall.sh -------------------------------------------------------------------------------- /install/06-UpgradePerl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/install/06-UpgradePerl.sh -------------------------------------------------------------------------------- /install/DEBUGGING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/install/DEBUGGING.txt -------------------------------------------------------------------------------- /install/rc.local.SAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/install/rc.local.SAMPLE -------------------------------------------------------------------------------- /lib/Site/BLEInfo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/lib/Site/BLEInfo.pm -------------------------------------------------------------------------------- /lib/Site/GATTTable.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/lib/Site/GATTTable.pm -------------------------------------------------------------------------------- /lib/Site/ParseData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/lib/Site/ParseData.pm -------------------------------------------------------------------------------- /lib/Site/Process.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/lib/Site/Process.pm -------------------------------------------------------------------------------- /lib/Site/RasPiUtils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/lib/Site/RasPiUtils.pm -------------------------------------------------------------------------------- /lib/Site/WSServer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/lib/Site/WSServer.pm -------------------------------------------------------------------------------- /public_html/BLEServer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/public_html/BLEServer.css -------------------------------------------------------------------------------- /public_html/BLEServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/public_html/BLEServer.js -------------------------------------------------------------------------------- /public_html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/public_html/favicon.ico -------------------------------------------------------------------------------- /public_html/images/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/public_html/images/Back.png -------------------------------------------------------------------------------- /public_html/images/Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/public_html/images/Config.png -------------------------------------------------------------------------------- /public_html/images/Folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/public_html/images/Folder.png -------------------------------------------------------------------------------- /public_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ToolChainGang/BLEServer/HEAD/public_html/index.html -------------------------------------------------------------------------------- /public_html/success.txt: -------------------------------------------------------------------------------- 1 | success 2 | --------------------------------------------------------------------------------