summaryrefslogtreecommitdiffstats
path: root/static/js/sensorController.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/js/sensorController.js')
-rw-r--r--static/js/sensorController.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/static/js/sensorController.js b/static/js/sensorController.js
deleted file mode 100644
index 272dfee..0000000
--- a/static/js/sensorController.js
+++ /dev/null
@@ -1,37 +0,0 @@
-angular.module('bmcApp').controller('sensorController', [
- '$scope', '$http', '$location', 'dbusWebsocketService',
- function($scope, $http, $location, dbusWebsocketService) {
- $scope.smartTablePageSize = 10;
- $scope.next_id = 0;
- dbusWebsocketService.start('/xyz/openbmc_project/sensors', function(evt) {
- var obj = JSON.parse(evt.data);
-
- $scope.$apply(function() {
- for (var sensor_name in obj) {
- var found = false;
- for (var sensor_index in $scope.rowCollection) {
- var sensor_object = $scope.rowCollection[sensor_index];
- if (sensor_object.name === sensor_name) {
- sensor_object.value = obj[sensor_name];
- found = true;
- break;
- }
- }
- if (!found) {
- console.log(sensor_name + ' -> ' + obj[sensor_name]);
- $scope.next_id = $scope.next_id + 1;
-
- $scope.rowCollection.push({
- id : $scope.next_id,
- name : sensor_name,
- value : obj[sensor_name],
- });
- }
- };
- });
- });
-
- $scope.rowCollection = [];
-
- }
-]);
OpenPOWER on IntegriCloud