blob: aaa5aa6723eea10331c148ac9b22c2e86cb3e5a0 [file] [log] [blame]
Michael Davisaeedf9e2017-04-06 14:35:56 -05001/**
Iftekharul Islamcd789502017-04-19 14:37:55 -05002 * Controller for sensors
Michael Davisaeedf9e2017-04-06 14:35:56 -05003 *
Iftekharul Islamcd789502017-04-19 14:37:55 -05004 * @module app/serverHealth
5 * @exports sensorsController
6 * @name sensorsController
Michael Davisaeedf9e2017-04-06 14:35:56 -05007 * @version 0.1.0
8 */
9
10window.angular && (function (angular) {
11 'use strict';
12
13 angular
14 .module('app.overview')
15 .controller('sensorsController', [
16 '$scope',
17 '$log',
18 '$window',
19 'APIUtils',
20 'dataService',
21 function($scope, $log, $window, APIUtils, dataService, userModel){
22 $scope.dataService = dataService;
23
24 $scope.dropdown_selected = false;
25
Iftekharul Islamcd789502017-04-19 14:37:55 -050026 $scope.$log = $log;
27 $scope.message = 'Hello World!';
Michael Davisaeedf9e2017-04-06 14:35:56 -050028 }
29 ]
30 );
31
Iftekharul Islamcd789502017-04-19 14:37:55 -050032})(angular);