Browse Source

add webtest.cmd for python testing of webserver

tags/v0.1.0
Simon Schmidt 3 years ago
parent
commit
d0b824963b
3 changed files with 4 additions and 3 deletions
  1. 1
    1
      include/http/index.html
  2. 2
    0
      include/webtest.cmd
  3. 1
    2
      src/main.cpp

+ 1
- 1
include/http/index.html View File

<meta charset="utf-8"> <meta charset="utf-8">
<title>My test page</title> <title>My test page</title>
<link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css"> <link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<link href="styles/style.css" rel="stylesheet" type="text/css">
<link href="style.css" rel="stylesheet" type="text/css">
</head> </head>
<body> <body>
<h1>Mozilla is cool</h1> <h1>Mozilla is cool</h1>

+ 2
- 0
include/webtest.cmd View File

CD .\include\http
py.exe -m http.server

+ 1
- 2
src/main.cpp View File

Serial.print("IP address: "); Serial.print("IP address: ");
Serial.println(WiFi.localIP()); Serial.println(WiFi.localIP());


//server.on("/", handleRoot);
server.on("/", handleRootGz); server.on("/", handleRootGz);
server.on("/styles/style.css", handleCssGz);
server.on("/style.css", handleCssGz);
server.onNotFound(handleNotFound); server.onNotFound(handleNotFound);


server.begin(); server.begin();

Loading…
Cancel
Save