2022-08-13 13:51:27 -03:00
2022-08-13 12:57:33 -03:00
2022-08-13 12:57:33 -03:00
2022-08-22 18:47:17 -03:00
2022-08-05 01:29:41 -03:00
2022-08-05 11:30:21 -03:00

ESP Button Bridge

A esp8266 button to toggle other esp8266 GPIO while it still enables the other device to receive http commands. Designed to control a tasmotta flashed device.

Plan

References

unsigned char softap_stations_cnt;
struct station_info *stat_info;
struct ip_addr *IPaddress;
uint32 uintaddress;

  softap_stations_cnt = wifi_softap_get_station_num(); // Count of stations which are connected to ESP8266 soft-AP
  stat_info = wifi_softap_get_station_info();
  Serial.write(softap_stations_cnt);
  while (stat_info != NULL) {
    IPaddress = &stat_info->ip;
    uintaddress = IPaddress->addr;
    Serial.write((uintaddress>>24));
    stat_info = STAILQ_NEXT(stat_info, next);
  }
Description
No description provided
Readme 262 KiB
Languages
C++ 100%