mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-04 22:19:38 +00:00
20 lines
379 B
Perl
20 lines
379 B
Perl
package Device::Firmata::Platform::Arduino;
|
|
|
|
=head1 NAME
|
|
|
|
Device::Firmata::Platform::Arduino - subclass for the arduino itself
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
No customization requried at this time so this is just a specification of the
|
|
Device::Firmata::Platform class
|
|
|
|
=cut
|
|
|
|
use strict;
|
|
use Device::Firmata::Platform;
|
|
use Device::Firmata::Base
|
|
ISA => 'Device::Firmata::Platform';
|
|
|
|
1;
|