An open API service indexing awesome lists of open source software.

https://github.com/ajtatum/iotcontrol

An ASP.Net MVC 5 application to control IoT devices (currently only supports LIFX bulbs).
https://github.com/ajtatum/iotcontrol

aspnet-identity autofac automapper csharp entity-framework iot lifx mvc

Last synced: 9 months ago
JSON representation

An ASP.Net MVC 5 application to control IoT devices (currently only supports LIFX bulbs).

Awesome Lists containing this project

README

          

Welcome to IoTControl!
=====================

IoTControl is an ASP.NET MVC 5 application to control Internet of Things (IoT) devices. This is a personal project that I work on to play around with IoT device APIs; however, it works "in the wild."

The application currently works with LIFX.

Getting Started
---------------

You'll need to add two files:

1. IoTControl.Web/appSettings.config
2. IoTControl.Web/connectionStrings.config

In appSettings.config, you'll have:

```


```

And in connectionStrings.config:

```

```

To Do
---------------

- Currently, for LIFX integration we ask users to provide an their access token. Instead, we should utilize LIFX's OAuth integration.
- Work can be done to improve the separation of layers between this application and IoT APIs.
- Unit & Integration Testing
- and more!