diff --git a/fhem/docs/HOWTO.html b/fhem/docs/HOWTO.html
index 052a6619e..953bebe61 100644
--- a/fhem/docs/HOWTO.html
+++ b/fhem/docs/HOWTO.html
@@ -43,12 +43,14 @@
-
Starting
+ Starting fhem
+ Skip this section if you installed fhem via the Debian package.
+
First install the Device::SerialPort (or Win32::SerialPort) perl module
- with the command "cpan -i Device::SerialPort"
- The default configuration will install fhem into /usr/local/bin,
- /usr/local/lib/FHEM and /var/log/fhem. Edit the Makefile to change
+ with the command "sudo cpan Device::SerialPort"
+ The default configuration will install fhem into /usr/bin,
+ /usr/share/fhem and /var/log/fhem. Edit the Makefile to change
this.
To install & start fhem type:
@@ -69,17 +71,23 @@
- Attaching an FHZ/CUL
+ Attaching the USB device for the PC (CUL / FHZ / EM1010PC)
- Attach the FHZ1000 or FHZ1300 to your computer, and look for a file named
- /dev/ttyUSB0 or /dev/tts/USB0 (or /var/elv on the Fritz!Box).
- Define it for fhem (by typing it in the
- "Fhem cmd" input field in the browser):
- define FHZ1 FHZ /dev/ttyUSB0
- You can find details here and
- here. Instead of an FHZ you can also
- use a CUL with slightly different
- parameters (define CUL CUL /dev/ttyACM0 1234).
+ Attach the USB device (CUL, FHZ1000/FHZ1300, EM1010PC) to your computer,
+ and look for the corresponding device in the /dev directory.
+ For CUL a file named /dev/ttyACM* will be created under Linux and
+ /dev/cu.usbmodem* under OSX. Note the exact name of the device.
+ Define it for fhem (by typing it in the "Fhem cmd" input field in the
+ browser):
+ define CUL1 CUL /dev/ttyACM0 1234
+
+ You can find details about CUL define parameters here.
+
+
+ Instead of the CUL you can also use an FHZ with slightly different parameters
+ (define FHZ1 FHZ /dev/ttyUSB0).
Note: Don't forget to type "save" in the "Fhem cmd" input field of
@@ -354,7 +362,7 @@
See the devspec paragraph for details.
For more complex scenarios consider the
structure module. You can define different structure levels like
- floors, buildings, etc. and set all elements of a gives structure at once.
+ floors, buildings, etc. and set all elements of a given structure at once.
diff --git a/fhem/docs/fhem.html b/fhem/docs/fhem.html
index 450b1d9c4..bb347b41f 100644
--- a/fhem/docs/fhem.html
+++ b/fhem/docs/fhem.html
@@ -278,17 +278,19 @@
Install
this package, and connect to
http://localhost:8083/fhem (or to http://localhost:8084/fhem for
- smartphones)
+ smartphones). Follow the HOWTO for adding
+ devices.
- Unix/OSX
+ Unix / OSX
- Make sure you have perl. Install the module Device::SerialPort with
- "cpan Device::SerialPort"
+ "sudo cpan Device::SerialPort"
Check the Makefile for the installation path, then type make
install-pgm2.
Check the installed configuration file and start fhem as advised.
+ Follow the HOWTO for adding devices.
Windows