https://github.com/cyilcode/wcontroller
Server module for X named mobile application
https://github.com/cyilcode/wcontroller
Last synced: 3 months ago
JSON representation
Server module for X named mobile application
- Host: GitHub
- URL: https://github.com/cyilcode/wcontroller
- Owner: cyilcode
- License: mit
- Created: 2016-08-29T20:02:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-22T12:22:39.000Z (over 8 years ago)
- Last Synced: 2025-01-14T06:11:38.699Z (4 months ago)
- Language: C#
- Size: 118 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WirelessControl
Wireless control is a cross-platform server module for remote applications that uses TCP/IP Protocol.
# Features (to be implemented)
* OS Controls like: sound, input controls(mouse/keyboard etc)
* Application executions
* Operation timers
* Setup OS Tasks
* Custom code execution (plugin development)
* 100% Free# How to install ?
Currently, WController is not operational yet. However, if you want to get into the developmental stage you need to download prerequisites for your platform
**Windows**
On windows you don't have that much of a work. You can follow [this](https://blogs.msdn.microsoft.com/sujitdmello/2015/04/23/step-by-step-installation-instructions-for-getting-dnx-on-your-windows-machine/) tutorial to make WController work.
**Linux**
Setup on linux is fairly simple
* Clone this repository
* Open up a terminal and get into the WController main directory
* Execute ```chmod x+ linux_installscript.sh``` to assign proper permissions to setup script
* Just simply execute ```./linux_installscript.sh``` and done !!
* Restart your terminal and done !!**OSX**
On Mac OSX, setup will require homebrew. If you haven't installed it yet,
Run
```/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" ```
on your terminal.
After,
* Clone this repository
* Open up a terminal and get into the WController main directory
* Execute ```chmod x+ osx_installscript.sh``` to assign proper permissions to setup script
* Just simply execute ```./osx_installscript.sh```
* Restart your terminal and done !!# How to run ?
I you have run the installation script for your platform, you should be able to build or run the program with:
```dnu build ./src/WCS.MAIN/project.json ``` to build or ```dnx -p ./src/WCS.MAIN ``` to run.
or you can build or run the test project with:```dnu build ./test/WCS.TEST/project.json ``` to build or ```dnx -p ./test/WCS.TEST test ``` to run.
# Development Progress - 57%