All Projects → LSIR → gsn

LSIR / gsn

Licence: GPL-3.0 license
Global Sensor Networks

Programming Languages

java
68154 projects - #9 most used programming language
scala
5932 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to gsn

kotori
A flexible data historian based on InfluxDB, Grafana, MQTT and more. Free, open, simple.
Stars: ✭ 73 (+37.74%)
Mutual labels:  internet-of-things, sensor-network
NetworkManager-WiFi-WebUI
Web interface (python2/twisted) for NetworkManager daemon to manage WiFi connections
Stars: ✭ 42 (-20.75%)
Mutual labels:  webui
Molder
BDD steps libraries for test automation databases, web services, and WebUI
Stars: ✭ 16 (-69.81%)
Mutual labels:  webui
coctohug
Coctohug - Manage dozens of chia forks mining from a web browser! Nice localization with support of dozens of languages. Runs on Linux, Windows, MacOS, and more...
Stars: ✭ 36 (-32.08%)
Mutual labels:  webui
iot-workshop
A complete IoT Workshop
Stars: ✭ 42 (-20.75%)
Mutual labels:  internet-of-things
angular-alerta-webui
Alerta Web UI 6.0 (DEPRECATED) - See latest version Web UI 7.0
Stars: ✭ 69 (+30.19%)
Mutual labels:  webui
iota-python
A Pure-Python implementation of IOTA node
Stars: ✭ 30 (-43.4%)
Mutual labels:  internet-of-things
path planning GAN
Path Planning using Generative Adversarial Network (GAN)
Stars: ✭ 36 (-32.08%)
Mutual labels:  internet-of-things
AVPlayerItemHomeOutput
Coordinate the output of content associated with your HomeKit lightbulbs. #Ambilight
Stars: ✭ 38 (-28.3%)
Mutual labels:  internet-of-things
tritandb-kt
Time-series database for Internet of Things Analytics with a rich graph data model
Stars: ✭ 19 (-64.15%)
Mutual labels:  internet-of-things
oraclesolaris-contrib
oraclesolaris-contrib is a repository focussed on the Oracle Solaris 11.4 StatsStore, using methodologies like REST to connect to Oracle Solaris 11.4 and the new features being introduced in Oracle Solaris 11.4 OS.
Stars: ✭ 46 (-13.21%)
Mutual labels:  webui
webview-c
A tiny cross-platform webview C library to build modern cross-platform GUIs
Stars: ✭ 44 (-16.98%)
Mutual labels:  webui
tion python
Python module for Tion
Stars: ✭ 51 (-3.77%)
Mutual labels:  internet-of-things
iot-device-management
Leveraging Ethereum blockchain platform for identity, authentication and reputation of IoT devices
Stars: ✭ 84 (+58.49%)
Mutual labels:  internet-of-things
MicrosoftCloudWorkshop-Asia
Microsoft Cloud Workshop Asia for Intelligent Cloud / Intelligent Edge
Stars: ✭ 20 (-62.26%)
Mutual labels:  internet-of-things
ESP32 Thing Plus
ESP32 Thing-compatible board using the WROOM module and a QWIIC connector.
Stars: ✭ 18 (-66.04%)
Mutual labels:  internet-of-things
cloud4rpi
Cloud4RPi Client Library
Stars: ✭ 21 (-60.38%)
Mutual labels:  internet-of-things
s9k
dashboard/web app for managing kubernetes clusters, with similar functionality as k9s
Stars: ✭ 15 (-71.7%)
Mutual labels:  webui
Home-Assistant
Home-Assistant-Config
Stars: ✭ 186 (+250.94%)
Mutual labels:  internet-of-things
IOThook
IOT, Restful, Web service, Web Api
Stars: ✭ 25 (-52.83%)
Mutual labels:  internet-of-things

GSN Global Sensor Networks Build Status

GSN is a software middleware designed to facilitate the deployment and programming of sensor networks.

Online Documentation

You can find the latest GSN documentation, including a deployment, installation, and programming guide, on the project wiki. This README file only contains basic setup instructions depending on your goal:

Running and deploying GSN

Quick demo with Vagrant

On any computer that can run VirtualBox (or any other supported virtual machine provider), install Vagrant, get the GSN git repository or just the file Vagrantfile and type vagrant up in your terminal (being in the same folder). Once the provisioning is done, open your browser at http://localhost:8000/ to see the GSN UI. You can login with the username root@localhost and password changeme.

Debian package

To make it even easier to test on Linux or deploy at large scale, we provide debian packages (see releases). It includes a systemd script to start the GSN server modules automatically at boot and manage it like any other service. Configuration files are in /etc/gsn-core/, /etc/gsn-services/ and /etc/gsn-webui/, the virtual sensors in /etc/gsn-core/virtual-sensors/ and the logs can be found at /var/log/gsn-core/, /var/log/gsn-services/ and /var/log/gsn-webui/. Starting and stopping GSN is performed with service gsn-core start/stop, service gsn-services start/stop and service gsn-webui start/stop. By default, the GSN web interface is then accessible at http://localhost and the API at http://localhost:9000, but you can change the ports in the configuration files.

Universal package

We provide a universal package for each release of the code. This package is the best way to easily try GSN features on non-Linux platforms.

The installer binaries for the latest release can be found at: https://github.com/LSIR/gsn/releases

Once GSN is installed, you can start it, executing the batch file gsn-start.bat (Windows) or shell script gsn-start.sh (Linux).

Loading your first virtual sensor

To load a virtual sensor into GSN, you need to move its description file (.xml) into the virtual-sensors directory. This directory contains a set of samples that can be used.

You can start by loading the MultiFormatTemperatureHandler virtual sensor (virtual-sensors/samples/multiFormatSample.xml). This virtual sensor generates random values without the need of an actual physical sensor.

Developing new wrappers or Virtual Sensors

If you only need to write your own wrapper for a specific sensor communication protocol or processing class, you don't need to have the full building chain as in the next section. Just start an empty Java or Scala project and include a dependency to gsn-core (for example with maven):

<dependency>
    <groupId>ch.epfl.gsn</groupId>
    <artifactId>gsn-core</artifactId>
    <version>2.0.0</version>
</dependency>

Then you can package your code as a jar and put it in the lib folder of the installer (after you followed the steps of the previous section) and you are ready to load you own wrapper or virtual sensor. In the case of a new wrapper you will also need to register it on the wrapper.properties file on your GSN installation.

Building from sources

First download the code from the git repository (using --depth 1 makes it a lot smaller if you don't need the 10 years history):

git clone --depth 1 [email protected]:LSIR/gsn.git

The GSN modules have the following requirements for building from the sources:

  • gsn-core and gsn-extra
    • sbt 0.13+
    • Java JDK 1.7
  • gsn-tools and gsn-services
    • sbt 0.13+
    • Java JDK 1.7
    • Scala 2.11
  • gsn-webui

Then you can run the following tasks in sbt:

  • clean: remove generated files
  • compile: compiles the modules
  • package: build jar packages
  • project [core|extra|tools|services|webui]: select a specific projet

In the project core you can use re-start to launch gsn-core for development and debian:packageBin to build the debian package.

In the project services you can use run to start the web api in development mode and debian:packageBin to build the debian package.

In the project webui you can use startDjango to start the web interface in development mode and packageDjango to build the debian package.

Never use the development mode commands to run a production server !!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].