DIY fertilizer mixer and plant watering machine https://www.xythobuz.de/giessomat.html
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WifiStuff.h 321B

1234567891011121314151617
  1. #ifndef _WIFI_STUFF_H_
  2. #define _WIFI_STUFF_H_
  3. #ifdef PLATFORM_ESP
  4. void wifi_setup();
  5. void wifi_run();
  6. void wifi_set_message_buffer(String a, String b, String c, String d);
  7. void wifi_schedule_websocket(void);
  8. void wifi_send_status_broadcast(void);
  9. void wifi_send_websocket(String s);
  10. #endif
  11. #endif // _WIFI_STUFF_H_