Modifications

Sauter à la navigation Sauter à la recherche
3 232 octets ajoutés ,  28 avril 2018 à 21:40
aucun résumé de modification
Ligne 2 : Ligne 2 :     
{{traduction}}
 
{{traduction}}
 +
 +
== Installer la bibliothèque ==
 +
If you are using version 1.6.2 or later of the [https://www.arduino.cc/en/Main/Software Arduino software], you can use the Library Manager to install this library:
 +
 +
In the Arduino IDE, open the “Sketch” menu, select “Include Library”, then “Manage Libraries…”.
 +
# Search for “QTRSensors”.
 +
# Click the QTRSensors entry in the list.
 +
# Click “Install”.
 +
 +
If this does not work, you can manually install the library:
 +
# Download the [https://github.com/pololu/qtr-sensors-arduino/releases latest release archive from GitHub] and decompress it.
 +
# Rename the folder “qtr-sensors-arduino-xxxx” to “QTRSensors”.
 +
# Drag the “QTRSensors” folder into the “libraries” directory inside your Arduino sketchbook directory. You can view your sketchbook location by opening the “File” menu and selecting “Preferences” in the Arduino IDE. If there is not already a “libraries” folder in that location, you should make the folder yourself.
 +
# After installing the library, restart the Arduino IDE.
 +
 +
You should now be able to use these libraries in your sketches by selecting '''Sketch > Import Library > QTRSensors''' from your Arduino IDE (or simply type {{fname|#include <QTRSensors.h>}} at the top of your sketch). Note that you might need to restart your Arduino IDE before it sees the new libraries.
 +
 +
Once this is done, you can create a '''QTRSensorsAnalog''' object for your QTR-xA sensors and a '''QTRSensorsRC''' object for your QTR-xRC sensors:
 +
 +
<syntaxhighlight lang="C">
 +
// create an object for three QTR-xA sensors on analog inputs 0, 2, and 6
 +
QTRSensorsAnalog qtra((unsigned char[]) {0, 2, 6}, 3);
 +
 +
// create an object for four QTR-xRC sensors on digital pins 0 and 9, and on analog
 +
// inputs 1 and 3 (which are being used as digital inputs 15 and 17 in this case)
 +
QTRSensorsRC qtrrc((unsigned char[]) {0, 9, 15, 17}, 4);
 +
</syntaxhighlight>
 +
 +
This library takes care of the differences between the QTR-xA and QTR-xRC sensors internally, providing you with a common interface to both sensors. The only external difference is in the constructors, as you can see in the code sample above. The first argument to the QTRSensorsAnalog constructor is an array of analog input pins (0 – 7) while the first argument to the QTRSensorsRC constructor is an array of digital pins (0 – 19). Note that analog inputs 0 – 5 can be used as digital pins 14 – 19. For more details, see Section 3.
 +
 +
The only other difference you might experience is in the time it takes to read the sensor values. The QTR-xRC sensors can all be read in parallel, but each requires the timing of a pulse that might take as long as 3 ms (you can specify how long the library should time this pulse before timing out and declaring the result full black). The QTR-xA sensors use the analog-to-digital converter (ADC) and hence must be read sequentially. Additionally, the analog results are produced by internally averaging a number of samples for each sensor (you can specify the number of samples to average) to decrease the effect of noise on the results.
 +
 +
Several example sketches are available to help you get started. To view the example sketches, open the Arduino IDE and navigate to:
    
{{Pololu-Senseur-QTR-TRAILER}}
 
{{Pololu-Senseur-QTR-TRAILER}}
29 917

modifications

Menu de navigation