lpcmanager

Added new POU that enables same WiFi settings as in Web Interface (Client or Access point, DHCP or static IP, different authentication types).
#! gmake
our_lib_path = $(abspath .)
original_svghmi_path = $(abspath ../../beremiz/svghmi)
our_widgets := $(wildcard *.ysl2)
xsltfiles := gen_index_xhtml.xslt gen_dnd_widget_svg.xslt analyse_widget.xslt
all: $(xsltfiles)
$(xsltfiles): $(our_widgets)
for f in $(xsltfiles); do rm -f $(original_svghmi_path)/$$f; done
YML_PATH=$(original_svghmi_path):$(our_lib_path) $(MAKE) -C $(original_svghmi_path)
for f in $(xsltfiles); do cp $(original_svghmi_path)/$$f $(our_lib_path)/$$f; done