diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-13 21:00:25 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-13 21:00:25 +0200 |
commit | fc1a41c627f25c1fa52c87d002d08870fa8876ac (patch) | |
tree | 78ad84e86d69dd986127735d3967fc670703f4b9 /minion/src/gymnasiearbete.cpp | |
parent | 481ef51ac14ad5b3bf0935dd6110b6a7d8afe731 (diff) |
fix(minion): conform to the http/1.1 response syntax
Diffstat (limited to 'minion/src/gymnasiearbete.cpp')
-rw-r--r-- | minion/src/gymnasiearbete.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/minion/src/gymnasiearbete.cpp b/minion/src/gymnasiearbete.cpp index 42e03a1..47e386e 100644 --- a/minion/src/gymnasiearbete.cpp +++ b/minion/src/gymnasiearbete.cpp @@ -98,7 +98,7 @@ void loop() Serial.print("\nData: "); Serial.println(request->data()); - wifi_module.send_response(connection_id, "lmao!"); + wifi_module.send_response(connection_id, 200U, "hello there!"); wifi_module.close_connection(connection_id); |