| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- ##############################################
- # $Id: 20_FRM_I2C.pm 5927 2014-05-21 21:56:37Z ntruchsess $
- ##############################################
- package main;
- use strict;
- use warnings;
- #add FHEM/lib to @INC if it's not allready included. Should rather be in fhem.pl than here though...
- BEGIN {
- if (!grep(/FHEM\/lib$/,@INC)) {
- foreach my $inc (grep(/FHEM$/,@INC)) {
- push @INC,$inc."/lib";
- };
- };
- };
- use Device::Firmata::Constants qw/ :all /;
- #####################################
- sub
- FRM_I2C_Initialize($)
- {
- my ($hash) = @_;
- $hash->{DefFn} = "FRM_Client_Define";
- $hash->{InitFn} = "FRM_I2C_Init";
- $hash->{UndefFn} = "FRM_Client_Undef";
- $hash->{AttrFn} = "FRM_I2C_Attr";
-
- $hash->{AttrList} = "IODev $main::readingFnAttributes";
- main::LoadModule("FRM");
- }
- sub
- FRM_I2C_Init($)
- {
- my ($hash,$args) = @_;
- my $u = "wrong syntax: define <name> FRM_I2C address register numbytes";
- return $u if(int(@$args) < 3);
-
- $hash->{"i2c-address"} = @$args[0];
- $hash->{"i2c-register"} = @$args[1];
- $hash->{"i2c-bytestoread"} = @$args[2];
- eval {
- FRM_Client_AssignIOPort($hash);
- FRM_Client_FirmataDevice($hash)->i2c_read(@$args[0],@$args[1],@$args[2]);
- };
- if ($@) {
- $@ =~ /^(.*)( at.*FHEM.*)$/;
- $hash->{STATE} = "error initializing: ".$1;
- return "error initializing '".$hash->{NAME}."': ".$1;
- }
- return "error calling i2c_read: ".$@ if ($@);
- if (! (defined AttrVal($hash->{NAME},"event-min-interval",undef))) {
- $main::attr{$hash->{NAME}}{"event-min-interval"} = 5;
- }
- return undef;
- }
- sub
- FRM_I2C_Attr($$$$) {
- my ($command,$name,$attribute,$value) = @_;
- my $hash = $main::defs{$name};
- eval {
- if ($command eq "set") {
- ARGUMENT_HANDLER: {
- $attribute eq "IODev" and do {
- if ($main::init_done and (!defined ($hash->{IODev}) or $hash->{IODev}->{NAME} ne $value)) {
- FRM_Client_AssignIOPort($hash,$value);
- FRM_Init_Client($hash) if (defined ($hash->{IODev}));
- }
- last;
- };
- }
- }
- };
- if ($@) {
- $@ =~ /^(.*)( at.*FHEM.*)$/;
- $hash->{STATE} = "error setting $attribute to $value: ".$1;
- return "cannot $command attribute $attribute to $value for $name: ".$1;
- }
- }
- 1;
- =pod
- =begin html
- <a name="FRM_I2C"></a>
- <h3>FRM_I2C</h3>
- <ul>
- represents an integrated curcuit connected to the i2c-pins of an <a href="http://www.arduino.cc">Arduino</a>
- running <a href="http://www.firmata.org">Firmata</a><br>
- Requires a defined <a href="#FRM">FRM</a>-device to work.<br>
- this FRM-device has to be configures for i2c by setting attr 'i2c-config' on the FRM-device<br>
- it reads out the ic-internal storage in intervals of 'sampling-interval' as set on the FRM-device<br><br>
-
- <a name="FRM_I2Cdefine"></a>
- <b>Define</b>
- <ul>
- <code>define <name> FRM_I2C <i2c-address> <register> <bytes-to-read></code> <br>
- Specifies the FRM_I2C device.<br>
- <li>i2c-address is the (device-specific) address of the ic on the i2c-bus</li>
- <li>register is the (device-internal) address to start reading bytes from.</li>
- <li>bytes-to-read is the number of bytes read from the ic</li>
- </ul>
-
- <br>
- <a name="FRM_I2Cset"></a>
- <b>Set</b><br>
- <ul>
- N/A<br>
- </ul>
- <a name="FRM_I2Cget"></a>
- <b>Get</b><br>
- <ul>
- N/A<br>
- </ul><br>
- <a name="FRM_I2Cattr"></a>
- <b>Attributes</b><br>
- <ul>
- <li><a href="#IODev">IODev</a><br>
- Specify which <a href="#FRM">FRM</a> to use. (Optional, only required if there is more
- than one FRM-device defined.)
- </li>
- <li><a href="#eventMap">eventMap</a><br></li>
- <li><a href="#readingFnAttributes">readingFnAttributes</a><br></li>
- </ul>
- </ul>
- <br>
- =end html
- =cut
|