Alexa가 Fauxmo 및 ESP8266을 식별 할 수 없음


10

fauxmo를 사용하여 ESP8266을 제어하려고합니다. 프로그램이 올바르게 컴파일되지만 Alexa 앱을 실행하여 장치를 찾을 때 ESP가 표시되지 않습니다.

ESP가 홈 네트워크에 확실히 연결되어 있고 프로그램이 실행 중입니다 (직렬 출력을 확인했습니다). Nest 온도 조절기와 같은 다른 네트워크 장치도 표시됩니다.

표시되지 않는 이유에 대한 아이디어는 크게 감사합니다.

내 wemos d1 mini의 코드는 다음과 같습니다.

#include <Arduino.h>
#include <ESP8266WiFi.h>
#include "fauxmoESP.h"

#define WIFI_SSID "..."
#define WIFI_PASS "..."
#define SERIAL_BAUDRATE                 115200

fauxmoESP fauxmo;

// -----------------------------------------------------------------------------
// Wifi
// -----------------------------------------------------------------------------

void wifiSetup() {

    // Set WIFI module to STA mode
    WiFi.mode(WIFI_STA);

    // Connect
    Serial.printf("[WIFI] Connecting to %s ", WIFI_SSID);
    WiFi.begin(WIFI_SSID, WIFI_PASS);

    // Wait
    while (WiFi.status() != WL_CONNECTED) {
        Serial.print(".");
        delay(100);
    }
    Serial.println();

    // Connected!
    Serial.printf("[WIFI] STATION Mode, SSID: %s, IP address: %s\n", WiFi.SSID().c_str(), WiFi.localIP().toString().c_str());
}

void callback(uint8_t device_id, const char * device_name, bool state) {
  Serial.print("Device "); Serial.print(device_name); 
  Serial.print(" state: ");
  if (state) {
    Serial.println("ON");
  } else {
    Serial.println("OFF");
  }
}

void setup() {
    // Init serial port and clean garbage
    Serial.begin(SERIAL_BAUDRATE);
    Serial.println("FauxMo demo sketch");
    Serial.println("After connection, ask Alexa/Echo to 'turn <devicename> on' or 'off'");

    // Wifi
    wifiSetup();

    // Fauxmo
    fauxmo.addDevice("relay");
    fauxmo.addDevice("pixels");
    fauxmo.onMessage(callback);
}

void loop() {
  fauxmo.handle();
}

1
코드가 잘 보입니다. 라우터에서 UPnP가 활성화되어 있습니까?
Optinaut

2
OSI 스택에서 시작합니다. 동일한 빈도를 사용하고 있습니까? 프로토콜 802.11 abgn? 내 말은, OSI 스택에서 시작하여 문제를 해결하십시오
Snake Sanders

1
에코가 아닌 Fire TV 스틱에서 Alexa를 사용하고 있습니다. 그게 문제가 될 수 있습니까?
llewmihs

1
Fire TV가 ESP와 동일한 Wi-Fi 네트워크에 있습니까?
mico

답변:


4

그래서 문제에 대한 해결책을 찾았습니다.

원래 Fire TV 스틱 Alexa를 esp에 연결하려고했습니다. 나는 총알을 물고 에코 도트를 샀다.

문제 해결됨.

현재 상태의 Fauxmo는 Fire TV에서 작동하지 않는 것 같습니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.