diff --git a/FHEM/myUtilsTemplate.pm b/FHEM/myUtilsTemplate.pm new file mode 100644 index 000000000..49a75af58 --- /dev/null +++ b/FHEM/myUtilsTemplate.pm @@ -0,0 +1,22 @@ +############################################## +# $Id$ +# +# Save this file as 99_myUtils.pm, and create your own functions in the new +# file. They are then available in every Perl expression. + +package main; + +use strict; +use warnings; +use POSIX; + +sub +myUtils_Initialize($$) +{ + my ($hash) = @_; +} + +# Enter you functions below _this_ line. + + +1;