C<Device::Chip::TMP102> - chip driver for an F<TMP102>
=head1 SYNOPSIS
use Device::Chip::TMP102;
my $chip = Device::Chip::TMP102->new;
$chip->mount( Device::Chip::Adapter::...->new )->get;
printf "Temperature is %2.2f C\n", $chip->read_temp->get;
=head1 DESCRIPTION
This L<Device::Chip> subclass provides specific communication to a
F<Texas Instruments> F<TMP102> attached to a computer via an I²C adapter.
Only a subset of the chip's capabilities are currently accessible through this driver.
The reader is presumed to be familiar with the general operation of this chip;
the documentation here will not attempt to explain or define chip-specific
concepts or features, only the use of this module to access them.
=cut
=head1 MOUNT PARAMETERS
=head2 addr
The I²C address of the device. Can be specified in decimal, octal or hex with
leading C<0> or C<0x> prefixes.
=cut
=head1 METHODS
The following methods documented with a trailing call to C<< ->get >> return
L<Future> instances.
=cut
=head2 read_config
$config = $chip->read_config->get
Reads and returns the current chip configuration as a C<HASH> reference.