dpy83214 2019-05-21 12:23
浏览 182

尝试使用AWS IoT通过Laravel应用程序发送MQTT消息

I've developed a web application using Laravel (PHP) and now I'm trying to communicate it with a IoT device (Rasberry Pi).

The idea is: when clicking a button, the application will send a MQTT message to the IoT device to start recording the data from a sensor and store it in a SD Card. When clicking again the button, it will send another MQTT message to the IoT device so it will stop recording.

Must say I'm just starting to learn how to use the Amazon Web Services IoT platform but I've reached to communicate the raspberryPi with my computer by using one of the examples of the python SDK using python script in both devices.

So we could say, I have now a python script that listens to a topic installed in the raspberry Pi. I parse the message and then do the following actions.

I'm trying now, then, to do the same but calling it from the Laravel application. So, my code looks like this:

Button HTML code

<button type="button" id="start-button" class="btn btn-outline-success btn-lg" onclick="startRecording()"><i class="fas fa-play-circle"></i> Start recording</button>

Javascript

<script src="{{ asset('js/mqttws31.min.js') }}"></script>
<script>
function startRecording(){
        MQTTconnect();
    }

    var mqtt;
    var reconnectTimeout = 2000;
    var host = "xxxxxxxxx.iot.eu-west-1.amazonaws.com";
    var port = 443;

    function onConnect(){
        //Once a connection has been made, make a subscription and send a message.
        console.log("Connected");
        //mqtt.subscribe("VaultingTable1");
        message = new Paho.MQTT.Message("Hello World");
        message.destinationName = "myDevice1";
        mqtt.send(message);
    }

    function MQTTconnect(){
        console.log("connecting to "+ host + " " + port);
        mqtt =  new Paho.MQTT.Client(host, port, "myDevice1");
        var options ={
            timeout : 3,
            onSuccess : onConnect,
        };
        mqtt.connect(options); //connect
    }

In this case I get this error:

WebSocket connection to 'ws://xxxxxxxxx.iot.eu-west-1.amazonaws.com:443/mqtt' failed: Error during WebSocket handshake: net::ERR_INVALID_HTTP_RESPONSE

Can anyone help me how to reach it?

Thanks!

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 程序不包含适用于入口点的静态Main方法
    • ¥15 素材场景中光线烘焙后灯光失效
    • ¥15 请教一下各位,为什么我这个没有实现模拟点击
    • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
    • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
    • ¥20 有关区间dp的问题求解
    • ¥15 多电路系统共用电源的串扰问题
    • ¥15 slam rangenet++配置
    • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
    • ¥15 ubuntu子系统密码忘记