Webserver ESP01 STM32 F103

Dependencies:   LCD_i2c_GSOE_Schnaiter ESP8266WebserverGSOE

Files at this revision

API Documentation at this revision

Comitter:
jack1930
Date:
Wed Aug 18 14:08:50 2021 +0000
Parent:
7:2cc694daeced
Commit message:
angepasst fuer Platine Offenburg

Changed in this revision

LCD_i2c_GSOE.lib Show diff for this revision Revisions of this file
LCD_i2c_GSOE_Schnaiter.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/LCD_i2c_GSOE.lib	Sat Aug 07 10:03:26 2021 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-https://os.mbed.com/users/jack1930/code/LCD_i2c_GSOE/#e02aaac1b3cf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LCD_i2c_GSOE_Schnaiter.lib	Wed Aug 18 14:08:50 2021 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/jack1930/code/LCD_i2c_GSOE_Schnaiter/#05f13250c22d
--- a/main.cpp	Sat Aug 07 10:03:26 2021 +0000
+++ b/main.cpp	Wed Aug 18 14:08:50 2021 +0000
@@ -24,7 +24,7 @@
 lcd myLCD;
 ESP8266Webserver myWebserver;
 
-PortOut diag(PortC,0xFF);
+PortOut diag(PortA,0xFF00);
 
 
 
@@ -110,25 +110,25 @@
 
 void testfunc()
 {
-    diag=diag|0x80;
+    diag=diag|0x8000;
     
     myWebserver.send(200,"text/html",getRootPage2());
 }
 
 void testfunc2()
 {
-    diag=0x40;
+    diag=0x4000;
     myWebserver.send(200,"text/html",getRootPage2());
 }
 void testfunc3()
 {
-    diag=0x20;
-    myWebserver.send(301,"text/html","");
+    diag=0x2000;
+    myWebserver.send(200,"text/html",getRootPage2());
 }
 
 void testfunc4()
 {
-    diag=diag|0x10;
+    diag=diag|0x1000;
     myLCD.clear();
     myLCD.cursorpos(0);
     myLCD.printf("%s",myWebserver.gibWert("Suchbegriff"));