A.IR Shield Nano RPi Python script: Difference between revisions

From AnalysIR WiKi
Jump to navigation Jump to search
Line 15: Line 15:
== Supported Platforms ==
== Supported Platforms ==
We have tested using an RPi running the latest Jesse updates as of Nov 2017. It should also run on other PYTHON 2.7 platforms (Linux, Windows, OSX etc.) with little or no adjustments. The script assumes the use of AnalysIR to accept received signals. In this context AnalysIR can be replaced by any other properly configured HTTP server. Signals can be sent using a properly configured HTTP POST, which can be sent from any location or platform - using a browser or application.
We have tested using an RPi running the latest Jesse updates as of Nov 2017. It should also run on other PYTHON 2.7 platforms (Linux, Windows, OSX etc.) with little or no adjustments. The script assumes the use of AnalysIR to accept received signals. In this context AnalysIR can be replaced by any other properly configured HTTP server. Signals can be sent using a properly configured HTTP POST, which can be sent from any location or platform - using a browser or application.
== Installing the Script ==
Create a directory named servAIR on your RPi and copy the file servAIR.py into that directory. The script will write to log files (servAIR.log.txt & requestLogAIR.txt) for saving script INFO messages and HTTP request logs. Of course this logging can be easily extended by the user. To run the script run the following command: '''''python servAIR.py 9449 &'''''. Depending on configuration, some users may need to type '''''sudo python servAIR.py 9449 &'''''.


== Running the Script ==
== Running the Script ==

Revision as of 11:27, 30 November 2017

The A.IR Shield Nano is a versatile IR tranceiver built on top of the Arduino Nano. It connects to a PC via the included serialUSB port connector and features advanced IR circuitry for sending & receiving IR signals. It can also record the IR carrier frequency with every signal.

This page describes an example PYTHON (2.7) scripts for using the shield on the RPi via HTTP POST requests. The script can alos be used on any LINUX system along with windows, subject ot PYTHON compatability.


About the A.IR Shield Nano

This is described elsewhere as follows:

About the Script

The script source code, is only available to those who have purchased a shield. Just email for the download link. You will require PYTHON 2.7 to run the script and it should be intalled on your RPi or other platform. We are happy to provide sript specific support, but you should be prepared to troubleshoot your PYTHON & RPi installation by yourself.

Supported Platforms

We have tested using an RPi running the latest Jesse updates as of Nov 2017. It should also run on other PYTHON 2.7 platforms (Linux, Windows, OSX etc.) with little or no adjustments. The script assumes the use of AnalysIR to accept received signals. In this context AnalysIR can be replaced by any other properly configured HTTP server. Signals can be sent using a properly configured HTTP POST, which can be sent from any location or platform - using a browser or application.

Installing the Script

Create a directory named servAIR on your RPi and copy the file servAIR.py into that directory. The script will write to log files (servAIR.log.txt & requestLogAIR.txt) for saving script INFO messages and HTTP request logs. Of course this logging can be easily extended by the user. To run the script run the following command: python servAIR.py 9449 &. Depending on configuration, some users may need to type sudo python servAIR.py 9449 &.

Running the Script

The script should be executed as follows: python servAIR.py 9449 where:

  • python - starts a python process to run the script
  • servAIR.py - is the name of the script and is located in your active directory.
  • 9449 - is the port number to use for communications & ideally should be the same number that you use for AnalysIR.
  • Experienced users will be able to run from other locations, force running in the background(python servAIR.py 9449 &) and pipe script output to a log file.

Stop the Script running

The best way to stop the script is to issue the following request via a web browser or CURL

http://192.168.137.217:9449/?exitCMD=1

(Change the IP Address & port number to match your own configuration. Experienced users may want to add in support for a password on this command)

Is it free to use the script in my own project?

Yes, there are no restrictions on using the script on your own commercial or hobby(non-commercial) projects, provided it is used together with an official A.IR shield purchased from AnalysIR or an authorised re-seller/agent. For other uses please contact us directly. We always appreciate when users provide a link back to our site.