Smoothie Web Server

Operating system: Windows 7 Home pro
Have Compiled, and downloaded Smoothie V1 to a Xpresso LPC 1769 board.

Set up the Config.txt to:
[
## Network settings
network.enable false # enable the ethernet network services
network.webserver.enable true # enable the webserver
network.telnet.enable true # enable the telnet server
network.ip_address auto # use dhcp to get ip address

  1. uncomment the 3 below to manually setup ip address

#network.ip_address 192.168.3.222 # the IP address
#network.ip_mask 255.255.255.0 # the ip mask
#network.ip_gateway 192.168.3.1 # the gateway address
#network.mac_override xx.xx.xx.xx.xx.xx # override the mac address, only do this if you have a conflict
]
Using firefox : 192.168.254.36 I get the “Welcome to Smoothie” page which is index.html.
Also have the “FDTI” serial ports working with driver: CDM_v2.12.00_WHQL_Certified

I’ve be looking for active index.html for the Web Server page.
looked in Smoothieware-edge and c: drive root (using search)
I see the source files for index.html but unable to find the web servers http root.
I’m logging into the Web server using DCHP…works great.
Would like to modify the index.html page.
I have also used the: xx.xx.xx.xx/sd/config.txt … also works great.

Any help avail??
Thanks
Richard Anderson

Imported from wikidot

Hey.

The files are hre : https://github.com/Smoothieware/Smoothieware/tree/edge/src/libs/Network/uip/webserver/httpd-fs-src
Once you modify those, you need to run https://github.com/Smoothieware/Smoothieware/blob/edge/src/libs/Network/uip/webserver/makefsdata.pl
And then compile and flash the firmware.

You could also just skip all that and just put your index file on the sd card then access http://ip_address/sd/index.html

Cheers.

Thanks, would have taken me awhile to figure that one.

So far have most of the firmware working on the LPC1769.
Great machine.