Replies: 25 comments 33 replies
-
Hello,
|
Beta Was this translation helpful? Give feedback.
-
A couple options for saving power would be to have the device go into deep sleep, however to have it work reliably that is likely not a great solution (ie: you wouldn't be able to reach it when it's sleeping). One little thing that you might do is revome the power LED if it has one... they use a surprising amount of your power.
Make sure you're using version 3.2.2. Also, if you're using an ESP8266, make sure to select "lwIP v1.4 High Bandwidth". Some people have recently had issues with v2.
For one of my projects I used Bluetooth SPP (serial) with a crude app on my phone (I have it send JSON data to control lights). You can find code for that here: https://github.com/pvint/Starfish-idf/blob/master/main/starfish_main.cpp but... I'll warn you - that code is a mess!
I honestly don't know. It has been working on Android recently, but I don't have any iOS products to test with. |
Beta Was this translation helpful? Give feedback.
-
Hey! First of all thanks for this library, it works great, I have been using it for a couple of weeks now and it does what you would expect from it, but I have been wondering about one thing and googling is getting me even more confuse, what do people use when they want to create an commercial Alexa compatible device? Is Arduino a real option or there is another alternative? Fauxmo is (I assume) a free option for DIY devices, I know that Arduino has an Arduino IOT, but that is also for hobbyists for what I can understand (you need to download an Arduino skill in Alexa for it to work) plus you either pay monthly to use third party Arduino devices or buy the official ones, Amazon ACK feels like the way to go but that feels very complicate, you need to buy an amazon exclusive kit and is definitely not cheap if you need to pay for each device where you want to implement it, how do products manage to be amazon and google assistant friendly if they need to buy separate things for each? |
Beta Was this translation helpful? Give feedback.
-
This library works great! I was using sinric but this is much easier to use. Using this library, I was wondering if any one was working on a way to return data to Alexa. I am building a drip control system for my ranch and I'd like to ask Alexa what valves are on or what the water pressure is. |
Beta Was this translation helpful? Give feedback.
-
I'm hopeing someone will add to the library. With Sinric, you can pass requested data back.Thanks...Sent from my Verizon, Samsung Galaxy smartphone
-------- Original message --------From: Paulo De Oliveira <[email protected]> Date: 1/29/21 1:29 PM (GMT-08:00) To: vintlabs/fauxmoESP <[email protected]> Cc: paulrjacques <[email protected]>, Comment <[email protected]> Subject: Re: [vintlabs/fauxmoESP] Welcome to fauxmoESP Discussions! (#133)
as far as I know this library basically tricks Alexa into thinking that it is talking with phillips hue lights, so it is a one way communication (the lights never talk back)
—You are receiving this because you commented.Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
-
if (digitalRead(LED)) fauxmo.setState(ID_LED, true, 255);else fauxmo.setState(ID_LED, false, 255); |
Beta Was this translation helpful? Give feedback.
-
Good Morning Paul and all, I have remote-controlled blinds in my kitchen and would like to make them move by saying to Alexa "blinds up/down" and also to open/close my garage... I have stumbled upon your code that I believe could be modified to work, problem is I cannot find the information I need to use the FauxmoESP.h Class. To construct an object of the Class I need to pass it data to and receive return data from (I'm assuming now), but can not find any info on this page regarding the Class functions. I'm sorry if this is a stupid question and that I'm really not understanding OOP and perhaps you could put me right, but I can't see how one is to use the Class if one can not see what is needed, from inside, to use it. I might not be seeing the wood for the trees, if so then could you point me to where I can find all the Class info. Regards, from a 70-year-old who is quite pleased he has found something to do. My history; I have programmed in Assembla many years back and have bashed out a few C++ (Arduino) scrips including Temperature sensors, with an ESP8266 with OLED display showing the Temperature (How to show the little circle degree sign as it's not in the standard ASCII code - I managed to figure this out, change font ++) of my freezer that was playing up. I used a 25Amp SSR to turn the freezer pump motor on/off and it's all working. Now I need to handle the no frost problem - what temp does it have to get up to stop the frost then back on again? |
Beta Was this translation helpful? Give feedback.
-
Fauxmoesp is in github, Google fauxmoesp. I am working on a drip watering system controller which is heavy with relay control and analog input (water pressure measurements) and an LCD (serial)display in the control box. I put all the code on an arduino and call an esp for wireless access. Besides not wanting to deal with 3.3v drivers, the esp lacks the analog inputs, serial ports and discrete control I need. I wish there was away of using fauxmo on an Arduino, that would solve all my problems. Currently I am generating a web page but i would like to use Alexa.PsulSent from my Verizon, Samsung Galaxy smartphone
-------- Original message --------From: CooperBoy <[email protected]> Date: 2/19/21 7:03 PM (GMT-08:00) To: vintlabs/fauxmoESP <[email protected]> Cc: paulrjacques <[email protected]>, Comment <[email protected]> Subject: Re: [vintlabs/fauxmoESP] Welcome to fauxmoESP Discussions! (#133)
I have heard of Sinric but:-
"Sinric is a cloud solution with a custom Alexa skill and a sinric server in india and you need an account. So it functionally can make "everything" like reading sensors, but when the sinric-server is offline(maybe forever), all sinric devices stop working."
Bob...
—You are receiving this because you commented.Reply to this email directly, view it on GitHub, or unsubscribe.
|
Beta Was this translation helpful? Give feedback.
-
Hi Paul,
We've been trying to find an ESP library that will support sending data
back to Alexa. In my case I'm trying to find an Arduino library to do
it.
Paul
… Hi Bob, have you checked out the examples?
https://github.com/vintlabs/fauxmoESP/blob/3e622227660011c3ed7d6468319ac38f6778e669/examples/fauxmoESP_Basic/fauxmoESP_Basic.ino
--
You are receiving this because you commented.
Reply to this email directly or view it on GitHub:
#133 (reply in thread)
--
The world is a comedy to those that think, a tragedy to those that feel.
....Horace Walpole....
|
Beta Was this translation helpful? Give feedback.
-
Does anybody have success with multiple ESP's? I can make Alexa recognize one switch (and this requires some twiddling) but I've never been able to get her to pair with more than one. Is this a limit of Alexa (I am using a dot) |
Beta Was this translation helpful? Give feedback.
-
I use this library to control a few lights, a heater regulator with adjustable temperature and latest to operate the reomte control of a tv. |
Beta Was this translation helpful? Give feedback.
-
Hello, Thanks for maintaining this library, and I'm hoping it'll meet my needs. Will I be able to 'trick' Alexa using this to think it's operating a Roller Shutter. As I want to have the commands OPEN/CLOSE or STOP instead of Turn ON/OFF the device. Example "Alexa Open Kitchen Shutters" or "Alexa Kitchen Shutters Open", but the first command is preferred. Also will I be able to perform combined faux functions like 'Favorite' command which is effectively pushing STOP+DOWN on the OEM controller. I'm going to be using a ESP that'll use transistors to trigger the 'dumb' manual buttons on the controller. So can I make up the commands Alexa will respond to in a better context/grammatical way? Also I like the percent option, and have thoughts about having that function set a timer till issuing the STOP command. Example "Alexa Open Kitchen Shutters to 50%" and have it trigger the CLOSE command (Shut it fully), then OPEN and timer for x second before STOP which will be about where it's 50%. |
Beta Was this translation helpful? Give feedback.
-
Hello, |
Beta Was this translation helpful? Give feedback.
-
Good morning friends! I am using this great library to control some relays with the WiFiManager to connect to web. I need to use brightness control in some resistives loads. I would liked documentations of this library for a better use. Thanks for all!! |
Beta Was this translation helpful? Give feedback.
-
Boa tarde amigo,
Uma pergunta, prefere que eu escreva em portugues ou inglês?? Realizei
algumas pequenas modificações na biblioteca wifimanager e consegui
controlar até 10 dispositivos utilizando o Accesspoint do ESP32 (ou 8266),
selecionando ssid e senha... Caso interesse, posso te enviar o código e o
hardware que tive de implementar. Atualmente estou desenvolvendo o projeto
para Alexa utilizando um módulo ACK... faço login na rede wifi utilizando
somente um QRcode. Voltando ao projeto com o ESP32, acrescentei ao sistema
uma maneira de "limpar " todos SSID´s e senhas registradas, pois sempre que
um novo acesso é imposto meu circuito armazena essas informações...
Um abraço,
Fernando Belíssimo
OBS>: resposta para ***@***.***
Em qui., 28 de out. de 2021 às 16:28, legnalegna1 ***@***.***>
escreveu:
… como integraste wifimanager y fauxmo en el mismo sketch?
por que si uso wifimanager alexa no encuentra el dispositivo
agradeceria su ayuda
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#133 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AUH2B4BMEOV6WNU6L3OXS73UJGW7LANCNFSM4UZ2MOYA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
--
|
Beta Was this translation helpful? Give feedback.
-
Good morning friend,
Go to "https://github.com/MasTerYoDa-60/MasTerYoDa-60", and enjoy
yourself!!
Em qui., 28 de out. de 2021 às 17:33, legnalegna1 ***@***.***>
escreveu:
… no importa el idioma gracias, mi problema surge cuando conecto con
wifimanager el esp01-s la conexion es exitosa ,pero alexa (fauxmo) no
encuentra el dispositivo nuevo y si uso fauxmo sin el wifimanager , alexa
(fauxmo))si descubre el nuevo dispositivo conclusion no puedo usar las dos
librerias wifimanager y fauxmo en el mismo sketch de arduino
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#133 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AUH2B4FIWWLBHXWXAZCSD7TUJG6TRANCNFSM4UZ2MOYA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
--
|
Beta Was this translation helpful? Give feedback.
-
I removed fauxmo.handle(); from the loop but the device still responds to Alexa commands. How is this happening? |
Beta Was this translation helpful? Give feedback.
-
Hi all, I use Tasmota based and other devices for my home automation for many years already. |
Beta Was this translation helpful? Give feedback.
-
hello , i have a problem since a few days . Im using fauxmoesp on a esp32 controller. KindRegards ^^ |
Beta Was this translation helpful? Give feedback.
-
Hello, Alexa does not recognise my ESP32. The ESP32 is connected to the same WIFI with my smartphone. Does it require an Amazon ECHO for searching? code: // Rename the credentials.sample.h file to credentials.h and fauxmoESP fauxmo; // ----------------------------------------------------------------------------- #define SERIAL_BAUDRATE 115200 #define LED_YELLOW 27 #define ID_YELLOW "yellow lamp" // ----------------------------------------------------------------------------- // ----------------------------------------------------------------------------- void wifiSetup() {
} void setup() {
} void loop() {
} |
Beta Was this translation helpful? Give feedback.
-
Hello, |
Beta Was this translation helpful? Give feedback.
-
Hi,
|
Beta Was this translation helpful? Give feedback.
-
Hello guys, My question is: Is there some way to expose a virtual device to alexa as a sensor? The instruction AddDevice seems only expose as a light. Thanks for the help! Regreats from Portugal! |
Beta Was this translation helpful? Give feedback.
-
Hello!
UPDATE: I am looking at the Alexa app, and it says that "Device doesn't support requested value", What am I missing here? |
Beta Was this translation helpful? Give feedback.
-
Hi, total noob here (sorry!). |
Beta Was this translation helpful? Give feedback.
-
👋 Welcome!
We’re using Discussions as a place to connect with other members of our community. We hope that you:
build together 💪.
To get started, comment below with an introduction of yourself and tell us about what you do with this community.
Beta Was this translation helpful? Give feedback.
All reactions