0

我必须使用 phongap 开发一个从设备检索传感器数据的 Android 应用程序。

我必须听的传感器之一是环境光传感器。这个传感器在 phoneGap 中没有实现,所以我必须将它作为插件添加到 PhoneGap。

我知道如何添加插件,我知道如何从 Java 访问 ALS 数据 - 但为了确保我很好地实现它,我想实现它,因为 PhoneGap 实现了其他传感器,如 Accelerometer。因此,我在 java 中编写了一个ALSManager类,当我发现 Accelerometer 在这里实现时,我实现了该类:

https://github.com/apache/cordova-android/blob/master/framework/src/org/apache/cordova/AccelListener.java

并添加了 lightSensor 和 lightValues 模块,如加速器和加速模块。

但是当我运行此应用程序时,我收到以下错误消息:

类型错误:对象 # 没有方法 'getCurrentLight'

(并且在 lightSensor 模块中我有 getCurrentLight 方法)。

有人可以建议我缺少什么吗?或者我该怎么办?

提前致谢,


我在cordova-2.5.0.js 中添加的代码。如果还不够,请告诉我:

    // file: lib/common/plugin/LightValues.js
define("cordova/plugin/LightValues", function(require, exports, module) {

var Acceleration = function(lux, timestamp) {
    this.lux = lux;
    this.timestamp = timestamp || (new Date()).getTime();
};

module.exports = LightValues;

});
// file: lib/common/plugin/lightSensor.js
define("cordova/plugin/lightSensor", function(require, exports, module) {

/**
 * This class provides access to device accelerometer data.
 * @constructor
 */
var argscheck = require('cordova/argscheck'),
    utils = require("cordova/utils"),
    exec = require("cordova/exec"),
    LightValues = require('cordova/plugin/LightValues');

// Is the accel sensor running?
var running = false;

// Keeps reference to watchAcceleration calls.
var timers = {};

// Array of listeners; used to keep track of when we should call start and stop.
var listeners = [];

// Last returned acceleration object from native
var light = null;

// Tells native to start.
function start() {
    exec(function(a) {
        var tempListeners = listeners.slice(0);
        light = new LightValues(a.lux, a.timestamp);
        for (var i = 0, l = tempListeners.length; i < l; i++) {
            tempListeners[i].win(light);
        }
    }, function(e) {
        var tempListeners = listeners.slice(0);
        for (var i = 0, l = tempListeners.length; i < l; i++) {
            tempListeners[i].fail(e);
        }
    }, "Light", "start", []);
    running = true;
}

// Tells native to stop.
function stop() {
    exec(null, null, "Light", "stop", []);
    running = false;
}

// Adds a callback pair to the listeners array
function createCallbackPair(win, fail) {
    return {win:win, fail:fail};
}

// Removes a win/fail listener pair from the listeners array
function removeListeners(l) {
    var idx = listeners.indexOf(l);
    if (idx > -1) {
        listeners.splice(idx, 1);
        if (listeners.length === 0) {
            stop();
        }
    }
}

var lightSensor = {
    /**
     * Asynchronously acquires the current acceleration.
     *
     * @param {Function} successCallback    The function to call when the acceleration data is available
     * @param {Function} errorCallback      The function to call when there is an error getting the acceleration data. (OPTIONAL)
     * @param {AccelerationOptions} options The options for getting the accelerometer data such as timeout. (OPTIONAL)
     */
    getCurrentLight: function(successCallback, errorCallback, options) {
        //argscheck.checkArgs('fFO', 'lightSensor.getCurrentLight', arguments);

        var p;
        var win = function(a) {
            removeListeners(p);
            successCallback(a);
        };
        var fail = function(e) {
            removeListeners(p);
            errorCallback && errorCallback(e);
        };

        p = createCallbackPair(win, fail);
        listeners.push(p);

        if (!running) {
            start();
        }
    },

    /**
     * Asynchronously acquires the acceleration repeatedly at a given interval.
     *
     * @param {Function} successCallback    The function to call each time the acceleration data is available
     * @param {Function} errorCallback      The function to call when there is an error getting the acceleration data. (OPTIONAL)
     * @param {AccelerationOptions} options The options for getting the accelerometer data such as timeout. (OPTIONAL)
     * @return String                       The watch id that must be passed to #clearWatch to stop watching.
     */
    watchLight: function(successCallback, errorCallback, options) {
        //argscheck.checkArgs('fFO', 'lightSensor.watchLight', arguments);
        // Default interval (10 sec)
        var frequency = (options && options.frequency && typeof options.frequency == 'number') ? options.frequency : 10000;

        // Keep reference to watch id, and report accel readings as often as defined in frequency
        var id = utils.createUUID();

        var p = createCallbackPair(function(){}, function(e) {
            removeListeners(p);
            errorCallback && errorCallback(e);
        });
        listeners.push(p);

        timers[id] = {
            timer:window.setInterval(function() {
                if (light) {
                    successCallback(light);
                }
            }, frequency),
            listeners:p
        };

        if (running) {
            // If we're already running then immediately invoke the success callback
            // but only if we have retrieved a value, sample code does not check for null ...
            if (light) {
                successCallback(light);
            }
        } else {
            start();
        }

        return id;
    },

    /**
     * Clears the specified accelerometer watch.
     *
     * @param {String} id       The id of the watch returned from #watchAcceleration.
     */
    clearWatch: function(id) {
        // Stop javascript timer & remove from timer list
        if (id && timers[id]) {
            window.clearInterval(timers[id].timer);
            removeListeners(timers[id].listeners);
            delete timers[id];
        }
    }
};

module.exports = lightSensor;

});
4

2 回答 2

0

我认为问题可能在于您正在将插件代码添加到cordova-2.5.0.js文件中。相反,您应该为每个 JavaScript 文件创建一个独立的 JS 文件,然后cordova.require()在 HTML 页面中要使用该功能的那些文件。

因此,在您的 www 文件夹中的某处创建LightValues.js并作为单独的文件。LightSensor.js然后在您的 HTML 文件中,确保包含 JS 文件:(<script type="text/javascript" src="path-to-lightSensor.JS-file">您只需要包含这个文件,因为它需要()第二个文件。)

接下来,在deviceReady()函数中,您可以使用 调用光传感器var lightSensor = cordova.require("cordova/plugin/lightSensor")。请注意,cordova/plugin/lightSensor不是 JS 文件的路径,而是您在define()编写插件时在该部分中声明的模块的名称。

在此之后,您应该能够调用 lightSensor.getCurrentLight()。如果您console.log(lightSensor)希望看到您编写的所有可用方法。

请注意,我对此并不肯定,cordova.require并且cordova.define在 cordova-2.5 中工作。我希望他们这样做,但这个页面有点暗示它可能直到 2.6 才受支持。如果您在拆分文件后遇到问题,可能是因为这个。

于 2013-04-29T14:41:21.187 回答
0

我刚刚开发了一个光传感器插件,幸运的是成功了。我刚刚阅读了上面的代码,发现了一些关于标识符的小错误,例如“var Acceleration = function(lux, timestamp)”,变量应该是 LightValues 而不是 Acceleration。所以请先检查代码以避免一些基本错误。然后,我首先使用“lux”作为变量的名称,但是在调试程序时我得到了一个未定义的 light 值。所以我将“lux”更改为“x”,它确实有效!

有 6 个文件需要注意:“LightListener.java”、“LightValues.js”、“LightSensor.js”、“cordova_plugin.js”、“index.html”和“config.xml”。如果您配置所有 6 个文件,该程序应该可以工作。

于 2014-03-27T04:11:37.830 回答