Story

here I am again with a new article talking about the amazing experience that I got through the Portenta Throne board that I have to explore the HD connectors of Arduino Portenta and this time I will play a bit with some sensors, specifically with a Thermocouple sensor which is a commonly used sensor in industrial applications.

About the Throne board, you can check out my previous Post related to the making details through this link

What you will learn from this instructable :

Enough talking, let's just get through.

Supplies

Arduino Portenta

Thermocouple Sensor

Portenta Throne Board

How Thermocouple Sensor Works

Let’s first check how thermocouple sensors work, such sensor is meant to measure temperature, it’s basically made of two different types of metals, joined together at one end once the joined end is heated up there is a continuous Voltage which flows in the thermoelectric circuit. This Voltage value changes relatively to the temperature changing.

Commercial thermocouples are available for some high pricesand it is in most cases interchangeable, that's why it is supplied with standard connector, these sensors can measure a wide range of temperatures. In contrast to most other methods of temperature measurement, thermocouples are self powered and require no external form of excitation. The main limitation with thermocouples is their accuracy; system errors of less than one degree Celsius (°C) can be difficult to achieve.

More details about Thermocouple sensors here

I attached in the above images the digital microscope camera view of the thermocouple that I will use : )

Sensor Hardware Requirments

Now which Portenta pins are appropriate to take the sensor measures !

To measure the voltage signals sent by our sensor we must get it first amplified then converted to digital data then intermpreted by the MCU! we can get it all done through the MAX6675 circuit from Maxim integrated ;

I remind you that I placed two MAX6675 ICs in the board schematic of my Throne board that I have made to explore the HD connectors of Arduino Portenta.

Considering the circuit datasheet, it says that the IC performs to digitizes the signal from a type-K thermocouple sensor, the chip has a simplified SPI communication port and designed to work in conjunction with an external microcontroller, it has a good conversion resolution and a high temperature mesurment range that could reach 1024°C which makes it suitable for many industrial applications.

You can also find the appropriate schematic setup for your circuit layout.

Backing to Our Throne Schematic

One note before moving forward, I used Altium designer to make the Throne board schem and PCB and here we back to it to check the connected pins that we used to establish the SPI communication between Portenta and MAX6675.

since Portenta has 6 SPI ports, I choosed to use the first and second ports for my MAX ICs

The appropriate pins for the first port are located in the second HD connector specificly through the pins 38, 40 and 42 I just used the NetLabel in my schematic to keep an arranged looking of the schem layout, make sure that you are using the same label for the same net.

I dragged the second MAX IC to the schematic where it will be connected to the second SPI port located in the first HD connector through the pins 33, 59, 61

Don’t forget to follow the datasheet recommended setup that shows the need of a 0.1uF decoupling capacitor placed in the power line of the MAX circuit, I also dropped two screw header terminals where I plug-in the thermocouple sensor

Now in the PCB layout, try to keep the decoupling capacitors closer to the power tracks as much as possible.

The assembly of such component package is not that much difficult and you can just make it using a solder iron and some flux

Sensor Connection Pins

Please consider that the sensor has a defined polarity so just follow the manufacturer instructions to define the plus and minus wires of your sensor.

I sticked the sensor head to my assembly hot plate to measure the temperature increase ;

Software and Test

In the software side, you can notice that I used the Max6675 library by Adafuit.

All what it takes is just the three pins that we used for the SPI communication then this instance will make Portenta interpret the MAX6675 data and display it through the Serial monitor.

I uploaded the code to my Portenta then opened the Serial monitor and here we go, as you can see in the above image, the readed data for the temperature values that keeps on increasing as long as the hot plate temperature increases which confirm that the SPI communication has been succesfully achieved and the MAX IC has be explored by our Portenta.

That’s it for this Porject guys, one last thing, make sure that you are doing electronics everyday, it was Chris, see you next time.