A place users can post their projects. If you have a small project and would like your own dedicated place to post and have others chat about it then this is your spot.

User avatar
By Ataberk Topçu
#61321 For example (following html code),I want to send datas from esp8266 to stm32f4 via webserver.But three data (red,green,blue) will arrive to stm32f4 by usart protocol.Now, will datas come respectively? In a word,how can ı save the datas to stm32f4?Can you tell to me that part?Thanks...

Code: Select all<html>
<head>
</head>
<body>
<form name="Settings"  method=POST>
<br>
<br>Red:<br><input type="text" name="Red" size="20"value="20"maxlength="50">
<br>
<br>Green:<br><input type="text" name="Green" size="20"value="20"maxlength="50">
<br>
<br>Blue:<br><input type="text" name="Blue" size="20"value="20"maxlength="50">
<br>
<input type="hidden" name="Cut" value=""><br>
<input type="submit"value="Set">
</form>
</html>