2017-06-06 20:36:18 +08:00
|
|
|
##
|
|
|
|
## This file is part of the libsigrokdecode project.
|
|
|
|
##
|
2019-09-09 00:07:19 -07:00
|
|
|
## Copyright (C) 2018 Steve R <steversig@virginmedia.com>
|
2017-06-06 20:36:18 +08:00
|
|
|
##
|
|
|
|
## This program is free software; you can redistribute it and/or modify
|
|
|
|
## it under the terms of the GNU General Public License as published by
|
|
|
|
## the Free Software Foundation; either version 2 of the License, or
|
|
|
|
## (at your option) any later version.
|
|
|
|
##
|
|
|
|
## This program is distributed in the hope that it will be useful,
|
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
## GNU General Public License for more details.
|
|
|
|
##
|
|
|
|
## You should have received a copy of the GNU General Public License
|
|
|
|
## along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
##
|
|
|
|
|
|
|
|
'''
|
2019-09-09 00:07:19 -07:00
|
|
|
This PD decodes the remote control protocol which is frequently used
|
|
|
|
within key fobs and power socket remotes.
|
2017-06-06 20:36:18 +08:00
|
|
|
|
2019-09-09 00:07:19 -07:00
|
|
|
They contain encoding chips like the PT2262 which converts the button
|
|
|
|
pressed and address settings into a series of pulses which is then
|
|
|
|
transmitted over whatever frequency and modulation that the designer
|
|
|
|
chooses. These devices operate at a number of frequencies including 433MHz.
|
2017-06-06 20:36:18 +08:00
|
|
|
|
2019-09-09 00:07:19 -07:00
|
|
|
This PD should also decode the HX2262 and SC5262 which are equivalents.
|
|
|
|
|
|
|
|
The decoder also contains some additional decoding for a Maplin L95AR
|
|
|
|
remote control and will turn the received signal into which button was
|
|
|
|
pressed and what the address code DIP switches are set to.
|
2017-06-06 20:36:18 +08:00
|
|
|
'''
|
|
|
|
|
|
|
|
from .pd import Decoder
|