Can I get a current sensor to send to BLYNK that the light is on or off and change the status of the button

Boa noite, tudo bom? sou brasileiro também, então fica mais fácil para conversar kk.
eu consigo fazer que um sensor de corrente envie para o BLYNK que “a luz está acessa ou apagada” e mudar o status do botão no aplicativo?

o botão vai estar ativando o rele, que está em paralelo com o interruptor de casa.

(traduzido do inglês)

Primeiro, você será solicitado a criar um novo tópico do fórum com essa pergunta.

Em segundo lugar, a resposta à sua pergunta é sim. Você pode atualizar o estado de um botão no aplicativo Blynk para refletir o estado de um botão físico. No entanto, parece que o que você está procurando é um interruptor de três vias. A outra opção é exibir graficamente o estado da luz no aplicativo Blynk. Se o interruptor físico acender a luz, a representação gráfica da luz no aplicativo Blynk será atualizada para refletir. O estado do comutador no aplicativo Blynk não muda. Se você alterar o estado do comutador no aplicativo Blynk, a luz física * e * a representação gráfica da luz serão desativadas. É assim que funciona um comutador de três vias.

Hahaha I see myself but 3 years ago from your question … and because this is your first post so I would like to drop by here with you few second before going back to Mars :slight_smile: . Let keep moving next guy then you will see what you are looking for … cheers !

In this example https://examples.blynk.cc/?board=ESP8266&shield=ESP8266%20WiFi&example=More%2FSync%2FSyncPhysicalButton

the section that send something to Blynk is this

// Update Button Widget
      Blynk.virtualWrite(V2, ledState);

and this below section from Blynk sends to your board

/BLYNK_WRITE(V2) {
  ledState = param.asInt();
  digitalWrite(ledPin, ledState);
}

Lastly you could use current sensor like Hall effect sensor to measure whether the light is really ON or OFF … yes you could … let searching Hall sensor …ok I need to go :wink:

Olá Lucas!
Você conseguiu?
Estou tentado o mesmo que vc.