2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 10:46:53 +00:00

HOWTO correction / updates / rewording

git-svn-id: https://svn.fhem.de/fhem/trunk@1136 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2011-12-17 09:06:05 +00:00
parent 454b579e03
commit ee4661544b
3 changed files with 174 additions and 150 deletions

View File

@ -14,24 +14,24 @@
<div id="logo"></div> <div id="logo"></div>
<div id="menu"> <div id="menu">
<h3>FHEM Howto</h3> <h3>FHEM Howto</h3>
<div id="block">
<b>Content:</b>
<div id="dist"></div>
<div id="dist"><a href="#starting">Starting</a></div>
<div id="dist"><a href="#attaching">USB device</a></div>
<div id="dist"><a href="#sensors">Sensors</a></div>
<div id="dist"><a href="#actors">Actors</a></div>
<div id="dist"><a href="#at">At / Notify</a></div>
<div id="dist"><a href="#logging">Logging data</a></div>
<div id="dist"><a href="#plotting">Plotting</a></div>
<div id="dist"><a href="#security">Security</a></div>
<div id="dist"><a href="#fhemweb">Look &amp; Feel</a></div>
<div id="dist"><a href="#structure">Structures</a></div>
</div>
</div> </div>
<div id="right"> <div id="right">
<!--
<a href="#starting">Starting</a><br>
<a href="#FHZ">Attaching an FHZ/CUL</a><br>
<a href="#FS20rx">Configuring FS20 receivers</a><br>
<a href="#FS20tx">Configuring FS20 transmitters</a><br>
<a href="#FHT">Configuring FHT devices</a><br>
<a href="#at">Timed commands / Notify</a><br>
<a href="#rooms">FHEMWEB look and feel</a><br>
<a href="#log">Logging data</a><br>
<a href="#plot">Plotting logs</a><br>
<a href="#tips">FHEMWEB tips</a><br>
<a href="#structure">Complex structures</a><br>
-->
<a name="starting"></a> <a name="starting"></a>
<h3>Starting fhem</h3> <h3>Starting fhem</h3>
@ -39,19 +39,19 @@
Skip this section if you installed fhem via the Debian <a Skip this section if you installed fhem via the Debian <a
href="http://fhem.de/fhem-=VERS=.deb">package</a>, the Fritz!Box 7390 href="http://fhem.de/fhem-=VERS=.deb">package</a>, the Fritz!Box 7390
<a href="http://fhem.de/fhem-=VERS=-fb7390.image">image</a>, or the FB <a href="http://fhem.de/fhem-=VERS=-fb7390.image">image</a>, or the FB
7170/7270 <a href="http://fhem.de/fhem-=VERS=.fb7270.zip">zip file</a>. 7170/7270 <a href="http://fhem.de/fhem-=VERS=-fb7270.zip">zip file</a>.
<br><br> <br><br>
As most fhem installations access the "outer world" via a USB device As most fhem installations access the "outer world" via a USB device
connected to the fhem computer (CUL, FHZ1x00, etc), we most probably need connected to the fhem computer (CUL, FHZ1x00, etc), we most probably need
the perl serial module.<br> the perl serial module. See the commandref section of your USB device, if
this module is needed.<br><br>
This is why you should first install the Device::SerialPort (or If yes, you can install it e.g. with <code>"sudo cpan
Win32::SerialPort) perl module with the command <code>"sudo cpan
Device::SerialPort"</code>. There are also precompiled debian packages Device::SerialPort"</code>. There are also precompiled debian packages
(libdevice-serialport-perl), and this module is already installed on OSX (libdevice-serialport-perl), and this module is already installed on OSX
10.6. If you cannot install it, you then take a look at the directio 10.6. If you cannot install it, you then take a look at the @directio
option<br><br> option in the commandref.html as a last resort.<br><br>
The default configuration will install fhem into /usr/bin, The default configuration will install fhem into /usr/bin,
/usr/share/fhem and /var/log/fhem and /etc/fhem.cfg, according to the /usr/share/fhem and /var/log/fhem and /etc/fhem.cfg, according to the
@ -68,8 +68,8 @@
2008.06.15 16:17:03 0: Server started (version ...)</pre> 2008.06.15 16:17:03 0: Server started (version ...)</pre>
</ul> </ul>
<a name="FHZ"></a> <a name="attaching"></a>
<h3>Attaching the USB device for the PC (CUL / FHZ1x00PC / etc)</h3> <h3>Attaching the USB device to the PC (CUL / FHZ1x00PC / etc)</h3>
<ul> <ul>
Connect to fhem with an internet browser: Connect to fhem with an internet browser:
<a href="http://localhost:8083/fhem">http://fhem-host:8083/fhem</a> <a href="http://localhost:8083/fhem">http://fhem-host:8083/fhem</a>
@ -111,8 +111,8 @@
</ul> </ul>
</ul> </ul>
<a name="autocreate"></a> <a name="sensors"></a>
<h3>Configuring transmitter devices (sensors)</h3> <h3>Configuring transmitter devices (i.e. sensors)</h3>
<ul> <ul>
The sample configuration file installed via "make install-pgm2" has The sample configuration file installed via "make install-pgm2" has
configured an <a href="commandref.html#autocreate">autocreate</a> configured an <a href="commandref.html#autocreate">autocreate</a>
@ -122,9 +122,11 @@
appeared devices. You can use <a href="commandref.html#rename"> appeared devices. You can use <a href="commandref.html#rename">
rename</a> to rename the automatically created device, e.g. type in the rename</a> to rename the automatically created device, e.g. type in the
input field of the web frontend: input field of the web frontend:
<br><br>
<ul><code> <ul><code>
rename FHT_1234 fht.kitchen</pre> rename FHT_1234 fht.kitchen</pre>
</code></ul> </code></ul>
<br>
<b>Note</b>: if you rename the device itself, the attached FileLog <b>Note</b>: if you rename the device itself, the attached FileLog
and weblink will be renamed automatically. The other way round (renaming and weblink will be renamed automatically. The other way round (renaming
@ -133,10 +135,11 @@
If you want to do the same manually:<br> If you want to do the same manually:<br>
Wait a while, until the transmitter sent some data. In the logfile Wait a while, until the transmitter sent some data. In the logfile
(Browser window: "Unsorted -> Logs / Fhemlog / text) a line (browser window: "Unsorted -> Logs / Fhemlog / text) a line
will appear: will appear:
<ul><code> <ul><code>
FS20 Unknown device &lt;HOUSECODE&gt;, Button &lt;BTN&gt; Code &lt;CDE&gt;, please define it FS20 Unknown device &lt;HOUSECODE&gt;, Button &lt;BTN&gt; Code
&lt;CDE&gt;, please define it
</code></ul> </code></ul>
Now define the fhem device: Now define the fhem device:
@ -153,16 +156,14 @@
<a href="commandref.html#model">Here</a> is a complete list of FS20 <a href="commandref.html#model">Here</a> is a complete list of FS20
models.<br> For other device types similar messages should appear.<br><br> models.<br> For other device types similar messages should appear.<br><br>
<b>Note:</b> Creating a fhem FHT or HomeMatic device automatically or HomeMatic sensors do not need to be paired with fhem, on the other side
manually does not imply that the CUL or the FHZ is paired with it. For fhem will only autocreate such a device, when it receives a pairing
this purpose you have to set the FHT to accept new devices request. You still need to "set CUL hmPairForSec 600" to respond
(Prog:Cent:N/A), and send a command to it (e.g. set fht.kitchen to this request.
desired-temp 20). If there is no signal for a while, then check <a
href="faq.html#faq6"> this</a> FAQ entry.
</ul> </ul>
<a name="FS20rx"></a> <a name="actors"></a>
<h3>Configuring FS20 receivers (actors)</h3> <h3>Configuring receivers (actors)</h3>
<ul> <ul>
Configure the <a href="commandref.html#FS20">FS20</a> device in Configure the <a href="commandref.html#FS20">FS20</a> device in
fhem first with:<pre> fhem first with:<pre>
@ -180,70 +181,74 @@
Other systems (EnOcean/HomeMatic) require a more elaborate procedure, and Other systems (EnOcean/HomeMatic) require a more elaborate procedure, and
the corresponding USB device is to be set into a pairing mode first. See the corresponding USB device is to be set into a pairing mode first. See
the commandref entry for your device. the commandref entry for your device.
</ul> <br><br>
Creating a fhem FHT / HomeMatic / EnOcean device automatically or
manually does not imply that the CUL or the FHZ is paired with it.
<ul>
<li>FHT:<br>
Set the FHT to accept new devices (Prog:Cent:N/A), and send a command
to it (e.g. set fht.kitchen desired-temp 20). If there is no signal
for a while, then check <a href="faq.html#faq6"> this</a> FAQ entry.
</li>
<li>HomeMatic:<br>
first set the CUL/HMLAN into pairing mode with
<ul><code>
set CUL hmPairForSec 600
</code></ul>
and then push the learning button on the HomeMatic device. If pairing was
successful, you'll see "CommandAccepted: yes" in the details window of the
device.
</ul>
</ul>
<a name="at"></a> <a name="at"></a>
<h3>Timed commands / Notification</h3> <h3>Timed commands (at) / Notification (notify,watchdog)</h3>
<ul> <ul>
To execute commands at a given time / periodically, you have to define To execute commands at a given time / periodically, you have to define
devices of the type <b>at</b>. See the definition <a href="commandref.html#at"> devices of the type <b>at</b>. See the definition and the examples
here</a> and the examples <a href="example.06_at">here</a>. The last link <a href="commandref.html#at">here</a>.
only works if you are reading this HOWTO from your fhem Web.<br><br> <br><br>
To execute commands if a device sent a message you have to define To execute commands if a device sent a message you have to define
devices of the type <a href="commandref.html#notify">notify</a> or devices of the type <a href="commandref.html#notify">notify</a> or
<a href="commandref.html#watchdog">watchdog</a>. In order to understand <a href="commandref.html#watchdog">watchdog</a>. In order to understand
the fhem events better you can open a telnet session to your fhem<pre> the fhem events better you should open a telnet session to your fhem
telnet localhost 7072</pre> <br><br><ul><code>
telnet &lt;fhemhost&gt; 7072
</code></ul><br>
and type <pre> and type
inform timer</pre> <br><br><ul><code>
inform timer
</code></ul><br>
Now you will receive in this telnet session all events, just like the Now you will receive in this telnet session all events, e.g.
notifies/watchdogs do. You can even simulate events by using the <br><br><ul><code>
<a href="commandref.html#trigger">trigger</a> command:<pre> 2011-12-16 21:51:55 FS20 myPiri on-for-timer 120
trigger lamp1 on</pre> </code></ul><br>
so you can define an action like:
<br><br><ul><code>
define lampNotify notify myPiri set myLamp on
</code></ul>
or
<ul><code>
define lampNotify notify myPiri:on.* set myLamp on
</code></ul><br>
To test your notify you can simulate events by using the
<a href="commandref.html#trigger">trigger</a> command:
<br><br><ul><code>
trigger myPiri on-for-timer 120
</code></ul><br>
For a more complex automation you can either control fhem by an external at, notify and watchdog take either simple fhem commands, shell scripts
program via telnet or HTTP, or (the usual way) do this via the fhem at or "perl oneliners" as argument. For details and tips on the perl
and notify commands. at and notify takes either simple fhem commands, oneliners read the <a href="commandref.html#perl">Perl specials</a>
shell skripts or "perl oneliners" as argument. For details and tips on section in the commandref.html</ul>
the perl oneliners read the <a href="commandref.html#perl">Perl
specials</a> section in the commandref.html</ul>
<a name="rooms"></a>
<h3>FHEMWEB (pgm2) look and feel</h3>
<ul>
It makes sense to group your devices into rooms by setting the room
attribute. FHEMWEB puts devices without a room attribute into the
"Unsorted" room. Devices in the room "hidden" will not be shown.
<br><br>
You can also define a stripped down FHEMWEB instance, by defining the
Menu entries to be hidden in the
<a href="commandref.html#hiddenroom">hiddenroom</a> FHEMWEB attribute.
<br><br>
Set the title of the webpage by setting the <code>title</code> attribute <a name="logging"></a>
of the global device ("All together" -> global)<br><br>
Edit the colors / fonts by changing the style.css ("Edit files" ->
style.css), or create you own style (see <a
href="commandref.html#stylesheetPrefix">stylesheetPrefix</a> , so it
won't be overwritten by the next <a
href="commandref.html#updatefhem">updatefhem</a> command.
<br><br>
Further FHEMWEB attributes:
<a href="commandref.html#webname">webname</a>,
<a href="commandref.html#plotmode">plotmode</a>,
<a href="commandref.html#plotsize">plotsize</a>.
</ul>
<a name="log"></a>
<h3>Logging data</h3> <h3>Logging data</h3>
<ul> <ul>
To log messages into files, define devices of the type <a To log messages into files, define devices of the type <a
@ -262,37 +267,46 @@
The size of each logfile will be determined by its wildcard characters The size of each logfile will be determined by its wildcard characters
(year/month/week/day), look at the <a href="commandref.html#FileLog"> (year/month/week/day), look at the <a href="commandref.html#FileLog">
FileLog</a> definition. FileLog</a> definition.
Don't forget to enable archiving with the <a You can enable archiving with the <a
href="commandref.html#nrarchive">nrarchive</a> or <a href="commandref.html#nrarchive">nrarchive</a> or <a
href="commandref.html#archivedir">archivecmd</a> attributes. href="commandref.html#archivedir">archivecmd</a> attributes.
</ul> </ul>
<a name="plot"></a> <a name="plotting"></a>
<h3>Plotting logs</h3> <h3>Plotting logs</h3>
<ul> <ul>
Autocreate will create weblinks (i.e. plots) for newly detected devices. Autocreate will create weblinks (i.e. plots) for newly detected devices.
The following section describes how to do it manually, e.g. if you want The following section describes how to do it manually, e.g. if you want
to plot data from different sensors together.<br><br> to plot data from different sensors together.<br><br>
To convert a FileLog into a plot (chart) in FHEMWEB, set the The data for a plot always comes from a single FileLog, change its regexp
<a href="commandref.html#logtype">logtype</a> attribute of the so that it will collect all events you want to plot. As the next step
corresponding FileLog. Take a look at the available gnuplot files in the set the <a href="commandref.html#logtype">logtype</a> attribute of the
"Edit files" section, they contain the corresponding FileLog definition FileLog, this will define which .gplot files to use.
example.<br> Take a look at the available gnuplot files in the "Edit files" section,
they contain the corresponding FileLog definition examples.<br>
Note that the .gplot files are also used if you use SVG output and Note that the .gplot files are also used if you use SVG output and
not the gnuplot backend!<br> not the gnuplot backend!<br>
The gnuplot files must have #FileLog entries in order to be useable
with gnuplot-scroll or SVG (these lines are treated as comment by
gnuplot, but not by fhem!), as the filtering happens with the FileLog get
function, see the supplied gnuplot files or the column_spec paragraph <a
href="commandref.html#FileLogget">here</a> for the syntax.<br><br>
Examples:<pre> Examples:<pre>
attr em1000log logtype power8:Power,text attr em1000log logtype power8:Power,text
attr fs20_log logtype fs20:Plot,text attr fs20_log logtype fs20:Plot,text
attr hms100th_log logtype temp4hum6:Plot,text attr hms100th_log logtype temp4hum6:Plot,text
</pre> </pre>
When displaying the plot, you can convert it into a Display the plot by clicking on it, and create a <a
<a href="commandref.html#weblink">weblink</a>, which href="commandref.html#weblink">weblink</a>, which has its own attributes
has its own attributes. If the weblink refers to the current (room, etc).
logfile, then it will be stored as a CURRENT weblink, and it will always If the weblink refers to the current logfile, then it will be stored as a
display the most recent log (you do not have to redefine it if the CURRENT weblink, and it will always display the most recent log (you do
logfile changes due to year/month/date parameters in its name). not have to redefine it if the logfile changes due to year/month/date
parameters in its name).
<br><br> <br><br>
@ -307,46 +321,46 @@
href="commandref.html#plotmode">plotmode</a> attribute to gnuplot or href="commandref.html#plotmode">plotmode</a> attribute to gnuplot or
gnuplot-scroll.<br><br> gnuplot-scroll.<br><br>
In order to look at historic data, you can either convert the In order to look at historic data, create another weblink and set its
archive entries to a weblink in "plotmode=gnuplot" mode, or use the fixedrange attribute, e.g.:
"plotmode=gnuplot-scroll" or "plotmode=SVG" modes. gnuplot-scroll and SVG <ul><code>
offer the possibility to zoom or scroll in the plot, see the arrow and attr weblink_1 fixedrange 2006-01-01 2007-01-01
magnifier icons at the top of the page.<br><br> </code></ul>
<br>
Note: the gnuplot files must have #FileLog entries in order to be useable To display "foreign" (non fhem) files as a plot or just as plain text,
with gnuplot-scroll or SVG (these lines are treated as comment by configure a fake logfile with the correct filename and an unused regexp,
gnuplot, but not by fhem!), as the filtering happens with the FileLog get e.g.<br><pre>
function, see the supplied gnuplot files or the column_spec paragraph <a define messages FileLog /var/log/messages fakelog</pre>
href="commandref.html#FileLogget">here</a> for the syntax.<br><br> </ul>
The order of the #FileLog lines must match the corresponding 'awk'
entries.<br><br>
I recommend using log files with year resolution, this is determined by
its wildcard characters (year/month/week/day), look at the FileLog
definition.
</ul> </ul>
<a name="tips"></a>
<h3>FHEMWEB tips</h3>
<a name="security"></a>
<h3>Security</h3>
<ul> <ul>
Click on the State link on the detail page to get a documentation of <li>The telnet port cannot be secured with a password. Usually this is
all its settable values, similarly clicking on "Attribute" will guide you not a problem, since this port is only accessible from the secure
to the documentation of its attributes. home network. Deleting the last "global" attribute from the "attr
<br><br> global port 7073 global" (changing it to "attr global port 7073")
will accept only local connections (i.e. telnet only from the fhem
server itself). <br><br></li>
There are two different ways to enable <b>Password and HTTPS</b><br><br> <li>One way of secure access from the outside is to use a VPN connection.
<ul> Connecting e.g. to a FritzBox by VPN works both for iOS and Android
<li>Using the builtin features of FHEMWEB for <a devices.
href="commandref.html#basicAuth">basic</a> html authentication and <a <br><br></li>
href="commandref.html#HTTPS">HTTPS</a>. The perl modules needed for
HTTPS are missing from the FritzBox distribution, I recommend a direct
VPN connection here.<br><br>
<li>Securing FHEMWEB (method 1) by using the builtin features of FHEMWEB
for <a href="commandref.html#basicAuth">basic</a> html authentication
and <a href="commandref.html#HTTPS">HTTPS</a>. The perl modules
needed for HTTPS are missing from the FritzBox distribution, so this
is not an option here.
<br><br></li>
<li>Securing FHEMWEB (method 2) by using apache to implement this
<li>Using apache to implement this features, and redirect a certain prefix to features, and redirect a certain prefix to each FHEMWEB instance.
each FHEMWEB instance.<br>
Add the following lines to your httpd.conf:<pre> Add the following lines to your httpd.conf:<pre>
&lt;Proxy *&gt; &lt;Proxy *&gt;
AuthType Basic AuthType Basic
@ -375,13 +389,26 @@
<li>Start httpd with the startssl option (SSL or the like must be set in <li>Start httpd with the startssl option (SSL or the like must be set in
one of your system files, look at /etc/init.d/httpd).</li> one of your system files, look at /etc/init.d/httpd).</li>
</ul> </ul>
<br><br>
</ul> </ul>
To display "foreign" (non fhem) files as a plot or just as plain text, <a name="fhemweb"></a>
configure a fake logfile with the correct filename and an unused regexp, <h3>FHEMWEB (pgm2) look and feel</h3>
e.g.<br><pre> <ul>
define messages FileLog /var/log/messages fakelog</pre> It makes sense to group your devices into rooms by setting the room
attribute. FHEMWEB puts devices without a room attribute into the
"Unsorted" room. Devices in the room "hidden" will not be shown.
<br><br>
You can also define a stripped down FHEMWEB instance, by defining the
Menu entries to be hidden in the
<a href="commandref.html#hiddenroom">hiddenroom</a> FHEMWEB attribute.
<br><br>
Edit the colors / fonts by changing the style.css ("Edit files" ->
style.css), or create you own style (see <a
href="commandref.html#stylesheetPrefix">stylesheetPrefix</a> , so it
won't be overwritten by the next <a
href="commandref.html#updatefhem">updatefhem</a> command.
<br><br>
</ul> </ul>

View File

@ -36,31 +36,29 @@
<ul> <ul>
Fhem is a GPL'd perl server for house automation. It is used to automate Fhem is a GPL'd perl server for house automation. It is used to automate
some common tasks in the household like switching lamps / shutters / some common tasks in the household like switching lamps / shutters /
heating / etc. and to log events like temperature/humidity/power heating / etc. and to log events like temperature / humidity / power
consumption.<br><br> consumption.<br><br>
The program runs as a server, you can control it via web-frontends, The program runs as a server, you can control it via web-frontends,
telnet, command line program or TCP/IP directly.<br><br> telnet, command line program or TCP/IP directly.<br><br>
In order to use fhem you'll need a 24/7 server (PC, MacMini, Fritz!Box, In order to use fhem you'll need a 24/7 server (PC, MacMini, Fritz!Box,
NAS, etc) with a perl interpreter and some hardware to access the NAS, etc) with a perl interpreter and some attached hardware like the
devices, see the "Supported hardware" section below. Some of the fhem CUL, FHZ1300PC, etc. to access the actors and sensors. See the "Supported
hardware-modules need special perl modules (e.g. Device::SerialPort) in hardware" section below.
order to work, see the corresponding section in the commandref.html.
</ul> </ul>
<a name="Download"></a> <a name="Download"></a>
<h3>Download</h3> <h3>Download</h3>
<ul> <ul>
Current Version: (as of =DATE=): Last released version: (as of =DATE=):
<a href="http://fhem.de/fhem-=VERS=.tar.gz">fhem-=VERS=.tar.gz</a>, <a href="http://fhem.de/fhem-=VERS=.tar.gz">fhem-=VERS=.tar.gz</a>,
<a href="http://fhem.de/fhem-=VERS=.deb">fhem-=VERS=.deb</a>, <a href="http://fhem.de/fhem-=VERS=.deb">fhem-=VERS=.deb</a>,
<a href="http://fhem.de/fhem-=VERS=-fb7390.image">fhem-=VERS=-fb7390.image</a>, <a href="http://fhem.de/fhem-=VERS=-fb7390.image">fhem-=VERS=-fb7390.image</a>,
<a href="http://fhem.de/fhem-=VERS=-fb7270.image">fhem-=VERS=-fb7270.zip</a> <a href="http://fhem.de/fhem-=VERS=-fb7270.zip">fhem-=VERS=-fb7270.zip</a>
<br> <br>
See the <a href="CHANGED">CHANGED</a> file for current changes. See the <a href="CHANGED">CHANGED</a> file for the change history.
<br> <br>
Nightly SVN version: a Nightly SVN version: a
<a href="http://www.dhs-computertechnik.de/downloads/fhem-cvs.tgz"> <a href="http://www.dhs-computertechnik.de/downloads/fhem-cvs.tgz">
@ -224,7 +222,7 @@
<h3>Documentation</h3> <h3>Documentation</h3>
<ul> <ul>
<div id="dist"><a href="fhem-fuer-Einsteiger_V1.pdf">fhem fuer <div id="dist"><a href="fhem-fuer-Einsteiger_V1.pdf">fhem f&uuml;r
Einsteiger</a> (pdf, german)</div> Einsteiger</a> (pdf, german)</div>
<div id="dist"><a href="HOWTO.html">HOWTO.html</a> for a short <div id="dist"><a href="HOWTO.html">HOWTO.html</a> for a short
@ -332,7 +330,7 @@
<h4>Fritz!Box</h4> <h4>Fritz!Box</h4>
<ul> <ul>
<li>See the detailed documentation <a href="fritzbox.html">here</a>, and <li>See the detailed documentation <a href="fritzbox.html">here</a>, and
after installation connect to http://localhost:8083/fhem. Follow the <a after installation connect to http://fritz.box:8083/fhem. Follow the <a
href="HOWTO.html">HOWTO</a> for adding devices. href="HOWTO.html">HOWTO</a> for adding devices.
</ul> </ul>

View File

@ -48,7 +48,7 @@
and enabling autocreate. When installing it, you have to confirm with an and enabling autocreate. When installing it, you have to confirm with an
extra click that it does not have a valid AVM signature. It will reuse your extra click that it does not have a valid AVM signature. It will reuse your
old logfiles and configuration, unlike the "original" AVM firmware. old logfiles and configuration, unlike the "original" AVM firmware.
Autocreate is on, and there are NO CUL devices defined in the initial Autocreate is on, and there are <b>no</b> CUL devices defined in the initial
configuration, you'll have to do this manually, e.g. by following the HOWTO configuration, you'll have to do this manually, e.g. by following the HOWTO
or the command reference. or the command reference.
@ -56,11 +56,10 @@
<h3>Fritz!Box 7170/7270 (as of 2011-09-03)</h3> <h3>Fritz!Box 7170/7270 (as of 2011-09-03)</h3>
<ul> <ul>
Thank to Eyk's work there is also a <a Due to Eyk's work there is also a <a
href="fhem-=VERS=-fb7270.zip">ZIP</a> file for the Fritz!Box 7170 and 7270 href="fhem-=VERS=-fb7270.zip">ZIP</a> file for the Fritz!Box 7170 and 7270
models. As the FB720/7170 has not enough internal storage to install fhem models. As the FB720/7170 has not enough internal storage to install fhem,
on it, you have to use an external USB Drive, and this package follows a you have to use an external USB Drive:
different approach than the FB7390 image.To install it:
<ul> <ul>
<li>First unzip the .ZIP file in the root directory of the USB-disk/USB-stick. <li>First unzip the .ZIP file in the root directory of the USB-disk/USB-stick.
<li>Attach the stick to the FB <li>Attach the stick to the FB