User Tools

Site Tools

한국어

modularfaduino:cftc1l

CFTC-1L

This is a module that can measure temperature using thermocoupler K, J, T, N, E, S, B, and R type sensors.

Electrical specifications

  • Sensor input points: 1 channel
  • Conversion unit: 0.0625°C
  • Error rate: ±1.5°C
  • Insulation method: Non-insulated method

Measurement range by sensor type

  • Type K: -200°C ~ 1350°C
  • Type J: -150°C to +1200°C
  • Type T: -200°C to +400°C
  • Type N: -150°C to +1300°C
  • Type E: -200°C to +1000°C
  • Type S: 250°C to +1664°C
  • Type B: 1000°C to +1800°C
  • Type R: 250°C to +1664°C
  • OPEN (when sensor is not connected): Returns -1111 value

Wiring method

Address Setting

  • CFTC-1L can be used up to 8 in one system with different address settings of 0x00~0x07.
  • The address setting method is different from other I/O modules. Caution is required.
  • This method turns on only one of the seven dip switches.

How to use commands

1. #include “CFMEGA.h” library registration

2. CFNET object creation: CFNET object name CFNET cfnet;

3. Use command:

  • Object Name.tcSetInit();cfnet.tcSetInit(0,0);
  • Object Name.tcTempRead();cfnet.tcTempRead(0);

-u8 tcSetInit(u8 addr, u8 sensor)

This command sets the sensor type to be used for the address module specified as the initialization setting.

  • address: module dip switch value (0~7)
  • sensor: Sensor type (Type K = 0, J = 1, T = 2, N = 3, S = 4, E = 5, B = 6, R = 7)

- float tcTempRead(u8 addr)

Reads the measured temperature value in float type to the second decimal place.
If the temperature sensor is not connected or disconnected, the value -1111 is returned.

  • address: Dip switch value of the module to be read (0~7)
#include "CFMEGA.h"
CFNET cfnet;
 
void setup() {
 Serial.begin(9600);
 cfnet.tcSetInit(0,0);
 cfnet.tcSetInit(1,0);
}
 
void loop() {
 float k_temp_0 = cfnet.tcTempRead(0);
 float k_temp_1 = cfnet.tcTempRead(1);
 
 Serial.print("Thermocouple 0 : "); Serial.print(k_temp_0); Serial.print("°C"); Serial.println();
 Serial.print("Thermocouple 1 : "); Serial.print(k_temp_1); Serial.print("°C"); Serial.println();
 Serial.println();Serial.println();
 delay(200);
}

Sensor type

You need to purchase a wire type sensor to connect this product. If you already have the connector type, open the connector and convert it to wire type.

Modular FADUINO

modularfaduino/cftc1l.txt · Last modified: 2024/08/31 11:47 by COMFILE Technology