String homepage_template(void){ String homepage = ""; homepage = homepage + "" "" "" "" "Physical Interface" "" "" "" "" "" "" "" "" "
" "

Physical Interface Controller

" "

Interact with the physical environment:

" "
"; for(const char* parameter : PARAMETER_LIST){ String parameter_type=getParameterType(parameter); if(parameter_type.equals("boolean")){ homepage = homepage + "
" ""+ parameter +"" "
" "
" "" "" "
" "
" "" "" "
" "
" "
"; }else{ homepage = homepage + "
" "" "
" "" "
" "
"; } } homepage = homepage + "
" "
" "
" "
" "" "
" "
" "
" "
" "

The data in plane text can be reached here.

" "

Please check out the git-repository to get more information about this software.

" "
" "" ""; return homepage; }