Skip to article frontmatterSkip to article content

Amphenol Telaire T6713 CO2 Sensors with Particle Argon

This the sensor we are going to build in this exercise.

Completed T6713 Sensor

Figure 1:Completed T6713 Sensor

We will need the following hardwares:

  1. Connect the Antenna to the Argon as shown in the previous figure.

  2. Solder the header to your T6713. Follow similar soldering instructions here.

  3. Connect the Argon and T6713 onto the breadboard as shown in the previous figure. Wire up the Argon and the sensor as follows:

    T6713 <---> Argon  
    Pin 4 <-----------------> GND
    Pin 3 <-----------------> 3v3
    Pin 2 <----------------> SCL
    Pin 1 <----------------> SDA
    Pin 6 <----------------> GND

    a. Connect the Ground (GND) pin of Argon to Pin 4 of T6713 sensor.

    GND to GND (Pin 4) pin.

    Figure 2:GND to GND (Pin 4) pin.

    b. Connect the 3x3 pin of the Argon to Pin 3 of the T6713 sensor.

    3v3 to VIN (Pin 3) pin.

    Figure 3:3v3 to VIN (Pin 3) pin.

    c. Connect the Argon SCL pin to Pin 2 of the T6713 sensor. Connect the Argon SDA pin to Pin 1 of the T6713 sensor.

    SCL to SCL (Pin2) pin. SDA to SDA (Pin 1).

    Figure 4:SCL to SCL (Pin2) pin. SDA to SDA (Pin 1).

    d. Connect the Argon GND pin to Pin 6 of the T6713 sensor.

    GND to Cntrl (Pin 6) pin.

    Figure 5:GND to Cntrl (Pin 6) pin.

  4. Refer to to register the Argon Device with our Particle account.

  5. Flash the script ‘STAPI_1_T6713’ to the Argon. Fill in the mandatory parameters accordingly. You can choose to leave the optional parameters to their default values.

    ===================================================================================================================
    !!! MANDATORY PARAMETERS
    ===================================================================================================================
    String thingDesc = "installed with 1 t6713"; //DESCRIBE THE DEPLOYMENT
    int sample_rate = 10 * 1000; // how often you want device to publish where the number in front of a thousand is the seconds you want
    ===================================================================================================================
    OPTIONAL PARAMETERS (if the device is already registered, these options are ignored)
    ===================================================================================================================
    //Description of the location
    String foiName = "na"; //THE LOCATION NAME
    String foiDesc = "na";//Define the geometry of the location. Refer to https://tools.ietf.org/html/rfc7946 for geometry types.
    String locType = "Point";
    String enType = "application/vnd.geo+json";
    //Define the location of the thing. If location is not impt, use [0,0,0] the null island position.
    float coordx = 0.0; //lon/x
    float coordy = 0.0; //lat/y
    float coordz = 0.0; //elv/z
  6. Refer to to visualize the data on Grafana.