K-log: DIY Temperature logger with STM32F103, microSD card and DS18B20.



K-log temperature logger.

The idea of the device I'm about to share with you was born out of events completely irrelevant to microcontrollers or any technology whatsoever. This may lead you to believe that I'm only going to share an idea, but I'm a tinkerer, not motivational speaker - scroll down for schematics and sources!


So, here's how it went down: the group of biology students was researching galls. Gall, they explained to me in layman's terms, is an abnormal outgrowth on plant's leaves. They've been used for centuries to make ink and that's actually all they're known for. These students' research was aimed to find out if these galls really are so useless/malevolent in every case, or can even be beneficial (i.e. symbiotic) to their host.
Typical gall. Taken from Wikipedia.

To do that they needed to take periodic measurements of certain parameters in specific locations (e.g. humidity around the plant, temperature inside the plant etc..). They've figured it all out, I've been told, but logging the temperature inside the gall. The device must be autonomous and its sensor must be tiny to fit inside. The nearest candidate they found was Maxim's temperature logging iButtons:

IP67 autonomous temp. loggers. Can be bought in bulk for next to nothing and thrown around to know the temperature of EVERYTHING!

Now, they are small and autonomous, but they were looking for something with even smaller sensor, something like this:
Can be found  here, but for all intents and purposes it's unobtainium for mere students😃

As it always happens, one thing led to another and I agreed to make a temperature-logging autonomous device with a tiny sensor for them (deciding to make a tutorial on how to make a useful piece of hardware in the process).

So, here's the tutorial on building a ready-for-customer temperature logger from scratch with inexpensive and easily obtainable parts:

Part 1. Parts.

The most important part-picking decision concerned temperature sensor. It has to be small and easily procured, right? Two choices that distinctly fit the bill immediately came to mind: thermocouples and DS18B20. IC temperature sensor is a lot bulkier than a droplet of two metals fused together, still, I picked DS18B20 after briefly considering the interface circuitry required for both:

Interface between uC and temp. sensors: left - thermocouple, right - ds18b20. Roughly scaled against one another.

External resistor can be omitted when wire connecting the sensor is relatively short or environment is doesn't have much interference, in which case internal pullup esistor can be used instead. The rest was easy to decide, so here goes:
  1. DS18B20 temperature sensor. You can get one in metal package, or a bare IC. I used the latter, because I hope to come up with something smaller than this steel cylinder encasing it.
    DS18B20
    DS18B20 in waterproof package

  2. Blue pill. Inexpensive and versatile board with STM32F103C8T6 as its core.

  3. STLink v2 programmer. You'll need it to upload your code to STM32 and debug it.

  4. microSD memory card + adapter for it. We'll convert microSD to SD adapter into microSD to microcontroller one. You can omit this part and just opt for an adapter board for microcontrollers (especially if you don't want to go further than a prototype) - less soldering, but maybe less fun.
    Adapter for microSD card.
    microSD adapter board for microcontrollers.

  5. Pushbutton, some jumper wires (these or these), one 4.7k resistor.

  6. For end product you'll additionally need:
  • Two toggle or rocker switches (both SPST - one to switch operating mode and another as a power switch)
    Left to right: power switch, mode switch.

  • Enclosure-mount connector for temperature sensor. I used this circular 4-pin connector (something similar online can be found here):
    Body marking says XS9K4P.

    This connector is pure awesomeness. It looks like the plug is locked into place after being screwed into receptacle, but it is actually self-locking. You have to pull the outer 'collar' part of a plug to unlock it, otherwise it won't budge.

  • Coin cell battery. How big depends on what kind of autonomous time you expect to get from this logger, I'm using the beefy-looking CR2477 (25mm diameter, 7mm height, 1Ah on average) to get as much as years. The standard CR2032 (20mm diameter, 3mm height, 220mAh on average) won't last as long, but it's encountered more frequently in daily life.

  • Polarized 3-pin connector to configure temperature logger via UART. I'm going to be using old familiar Molex KK series pin header that everyone knows simply as 'motherboard fan connector':

  • Load switch IC with at least one channel. You're going to need it to switch off your memory card to conserve power. DS18B20 consumes so little current it can be switched from IO pin. Load switch is not a part that every tinkerer has in their part bin, but luckily I had one that I ordered a long time ago as a sample from Texas Instruments. Well, your time to shine's finally come, little buddy, after years of laying in a dusty box!
    TSP22960 (datasheet)

    You can order one from distributor like Mouser, Farnell, etc..
  • Miscellania like standoffs and tiny screws and 3d-printed enclosure. I'll just leave the picture of all the parts I had (excluding the lid of the enclosure with indicator LED and mode switch associated with it) prior to assembling first revision of this device.

Part 2. Prototyping.

First off, some document links that might help:

With a device as relatively complex as this one, you gotta prototype to get your feet wet with all this technology. Temperature logger will involve FAT filesystem access via SPI, temperature sensor access via OneWire, usage of real-time clock with battery backup. Got to admit, I never even as much as dabbled in any of those before, at least on STM microcontrollers.

Let's cobble up something that can read temperature and write it to memory card upon a click of a pushbutton - using only jumper wires! Why solder something as impermanent as this?
That's the prototype

Assemble it according to this schematic and connect STLink programmer (you can have a peek on this post for programmer connections):


By the way, have you noticed something peculiar in this jumble of wires and electronics? I'm talking about SD adapter turned microSD-microcontroller interface with just a 2.54mm socket header:


Got the idea for this gimmick from this blog post. It's not pretty, but still better than nothing in a pinch - certainly better than waiting for a slow boat to China to bring you an SD card adapter.

Thanks you, Duncan the owner of  Shepherding electrons, for this clever and unconventional idea.

What comes next is writing POC software for this thing. This proved to be unexpectedly challenging, in terms of firmware size and software.

When it comes to writing software for STM32, the choice of IDEs and APIs is abundant, which in my opinion creates more confusion than conclusiveness. <rant>This reminds me of any shelf dedicated to one product in any supermarket around the world. Want to write your code somewhere and be able to debug it? We have CooCox CoIDE, IAR-EWARM, Keil MDK-ARM, Hitex HiTop5, ARM Development Studio and that's only the most popular ones. Now that you've picked an IDE, you'll additionally have to choose between libraries they have available to make your life even easier (ugh).</rant>
Arranged from least overhead to most, they are: CMSIS, StdPeriph and HAL. The difference is succinctly described on Stackexchange. As usual, I chose something in-between to find a perfect balance between being buried under datasheets and reference manuals and making one line of code equivalent to 10kB in flash memory.

After long hours of staring at the shelf, you decide that you no longer need the shampoo. You'd rather get qualified help from mental health specialist.

To write, upload and debug my code I used OpenSTM32 Workbench. It's an Eclipse-based IDE for STM micros and it's cross-platform. You can refer to my previous tutorial to learn how to set it up in Linux to debug and upload in one click.

STM32F103C8T6 pack a hefty 64k of flash memory, and it looks like a whole lot of memory to someone with experience of programming 8bit microcontrollers in plain C or assembly code. In realm of 32bit and STM-provided libraries, merely including stdlib.h and time.h and using standard strftime function to pretty-print your datetime structure can eat up a whopping 10k of flash!

Final prototype firmware that just logs temperature to SD card every 2 seconds as soon as the button is pressed is sized about 57k  - and the final device will require much more code! Thankfully, later I found out how to overcome this problem, you'll find the solution below in Coding section.

The OpenSTM32 project for prototype can be downloaded HERE.

Upload it, wait for 2 quick blinks of onboard LED. Then, press the button on PB11, the LED will blink rapidly as soon as the press is 'seen' on microcontroller (yes, I f*kken love to blink LEDs). Release the button and temperature logging will start with the period of 2 seconds.

To end logging process, press the button again until you see rapid blinks. Actually, ending the logging process properly is really important - unplugging memory card or powering off your device in the middle of write operation may lead to complete obliteration of FAT filesystem.

Logged temperature is recorded in tab-separated files (.csv, though technically it's not a comma-separated file) and can be accessed after just plugging your memory card to a card reader on your PC:

Each log file is marked with creation date - it's year 1970 because I didn't set up RTC counter.

The reason I went with CSV files to store the logs is that you can import CSV files into any spreadsheet program - just make sure to pick Tab as the only record-separating symbol (actually I couldn't find this option in latest MS Excel, but I'm sure it's still there... somewhere...) Each log entry has a timestamp against it.

CSV file is easily imported into any spreadsheet software.

Part 3. K-log temperature logger. Final device.

There are several things to consider about our final device, and flash size is one of them.

All the code that you write is placed in flash memory which is 64kB on Blue pill, and our little prototype's code nearly depleted this limit. Keeping in mind that prototype lacks a couple of vital functions that I had in store for K-log, I naturally expected that I'll have to cut memory consumption wherever I can to stay within 64k.

While browsing the forums related to STM32 programming, I accidentally found a silver bullet for those hefty firmwares. Just adding a couple of linker flags to the project configuration cuts firmware size almost in half. To do that for your project, go to Project properties -> C/C++ build -> Setting, then pick [All configurations] in Configuration dropdown, then add these flags under MCU GCC Linker -> Micellaneous -> Linker flags:

--specs=nano.specs -specs=nosys.specs

It's weird that OpenSTM32 developers didn't include these flags to every project by default though...


Just look at the difference in sizes of the same project built with and without the flags:
No flags - 58k.
With flags - 36k.

Another thing is power saving. To understand the order of magnitude of power-saving works, I settled on a plan to measure the current consumption in the prototype first. You'll only have to do two things to get ready for that: desolder the power LED from Bluepill and improvise a current-measuring jig like this:


Prototype's code would hog up around 7.5mA during temperature reading and SD write operations, and a whopping 5.5mA when it's just waiting!

Current consumption while measuring and writing to SD.
Current consumption during waiting.

According to this battery life calculator that's only about 30 hours of uptime if it's powered from CR2032 (remember, one of the most important goals was to build a miniature device).

Average CR2032 capacity is 200-240mAh.

K-log will spend most of the time waiting to make a measurement (specifically my 'customers' wanted to measure temperature twice a day), hence the current consumption we want to minimize is idle time consumption.

STM32F10x value line controllers come equipped with 2 modes for moderate to extreme power saving - STOP and STANDBY mode. To read more about those, refer to STM32F10x reference manual here .

Let's now upload some code to see how much we can save during idle time:
  • STOP mode:
    milliamps here, barely legible
    That's nice! But let's see if we can do even better...
  • STANDBY mode:
    microamps
    Awesome! More that two-hundredfold decrease in current consumption compared with no power saving! Incidentally, our microcontroller can wake up from this mode with RTC interrupt, which is exactly what we need.
Let's check our battery life calculator again:

A little over 8 month of work on CR2032 cell, provided it's not waking up too often.

Eight month is just great for just about any autonomous device! However, I wanted the user to NEVER ever face the need to remove the cover and change the battery, so I went for a bigger battery: CR2477(25mm diameter, 7mm height, 1Ah on average) compared to CR2032 (20mm diameter, 3mm height, 220mAh on average). That increased device's lifetime to 3.3 years approximately.

Enclosure

Having settled all those concerns, I set out to make an enclosure for K-log.

I could've made an ugly enclosure out of a soapbox like I always do, but this special device called for a neat packaging. Luckily for me, I have a friend who is the owner of 3d printer, and with added interest in this temperature logger at that (those biology students actually talked to him first, he then "delegated" this temperature logger to me). He asked another friend of his that knows his way around 3d modeling to create an enclosure for my device, then printed it an gave it to me. Moral of the story: being acquainted with talented people flies you into the moon.

Well, it was time to make it a joint project with my new accomplice!

Screenshots of first revision's STL files are given below:


Very much work in progress - the battery holder just holds the battery, the wires have to be connected with tape or something like that.

The lid holds a slider switch that switches between measurement and configuration modes, as well as an indicator LED.

Some pics of revision 1 enclosure fleshed out:

A Bluepill board for scale.
 
Elements worth noting in this model include threaded inserts that hold the top and snap-fit connector that holds Blue pill.
M4 10mm. threaded inserts is what I had handy. You should get M3 inserts (here for instance) - 100pcs bag is little over 5 USD.

I'll show how to hot-plug those inserts later, meanwhile, have the links to STL files of K-log enclosure TOP and BOTTOM parts (rev1).

Assembly

 You'll have to take care of one more thing before diving into assembling this. SD card module is designed to be used with 5V-powered boards, hence the 3.3V regulator and a buffer chip (sn74lvc125a) on it. One has to desolder the regulator and short out Vin and Vout pads like this to make it work on 3V powered device:

The next revision of the logger will incorporate a different, barebone adapter without any interface circuitry to avoid this fuss:
 

The assembly process can commence now - according to the schematics:

As you might have noted, this one is almost a carbon copy of prototype schematics with one important distinction: the presence of TPS22960 dual load switch. This one part is crucial in increasing battery life: both memory card's and temperature sensor's power lines are completely cut off most of the time.

UART is broken out on J4(5) molex connector.  It will be used to set date and time on logger, as well as time between temperature measurements. For personal convenience I put together an adapter to connect this directly to a standard FT232RL adapter (or cheaper CH340) (it corresponds to wires between J4 and J6 on schematic drawing):


To be frank, I didn't assemble the logger outright. Knowing the fickle beasts those microcontrollers are, I was prepared to solder all the stuff together just to learn that this particular peripheral can't be connected to this particular pin(s) due to the lack of a certain capacity (i.e. pin can't be turned off during sleep mode, or can't perform as an analog input or PWM input).

As a consequence, I assembled a sort of preliminary device without any care to soldering technique to test some scenarios from temperature logger's planned daily work:


Load switch's package was too tiny so I incorporated it onto an adapter board 

Some modifications had to be made: I learned that you needed pulldown resistors for load switch inputs because they float during deep sleep mode, 100 Ohm resistor with red LED pulled too much current and I had to halve the current with 220 Ohm one.

About 20mA to log temperature, and additional 40mA for a mere LED...

Well, now I was ready to make K-log come true. Some WIP pics following below:
Snug fit for mode switch.
Bottom view, hole on the right-hand side is for LED


A closeup of UART connector. Only 3 standoffs are used to minimize the amount of space occupied:

Everything soldered together. The only thing left to to is cram all this in so little room:



Every part that goes inside is there now. It's probably a good idea to test everything again at this point, this jumble of wires may contain a couple of shorts:



Outside view:


Time to program your device (scroll down for Coding section) and screw on the lid. You're going to need a heat source for that. Plugging threaded inserts sounds easy enough: heat it up and plug it in. The trick is to avoid overheating:

About 30 seconds on open flame is enough.
Red-hot slug, on the other hand, will melt the crap out of your enclosure. Don't do that.

Plug it carefully, making sure it's strictly upright at all times.

Cut away the plastic residue on the top and it's ready!

Now your very own K-log is ready:



One more thing that I only noticed when I had to use this logger: it's totally impossible to understand what mode you're in and how to switch to another mode. Black-colored felt tip pen quickly resolved my doubts:

Coding

Some useful lessons were learned during development of firmware for STM32F103 microcontroller.
  • For instance, I faced the following problem: when using FatFS to interface a memory card, it would work until power to SD card was cycled (i.e. switched off during idle time and on again during measurement and writing). After that any attempt to access filesystem resulted in FR_NO_FILESYSTEM error code. This software problem, as it later turned out, had a simple solution I haven't found anywhere online:

    The thing is, when controller wakes up from sleep mode, the variables are retained and hardware SPI is considered initialized when, in fact, it has to be reinitialized after power cycle. Commenting out the code highlighted in screenshot above does the trick. Note that this doesn't apply to STANDBY mode as uC resets upon wakeup.
  • The fact well known to every embedded developer is CPU frequency is proportional to current draw. Core frequency for StdPeriph is defined in system_stm32f10x.c. It's 72MHz by default, but for my low-power application I defined it to HSE frequency (on-board 8MHz crystal):

    This considerably reduced power consumption. Just look at the current draw of the same code (configuration mode) clocked at 8 and 72MHz:

    72MHz
    8MHz

Let's not forget about the software that will upload settings to K-log via serial port. I chose to write it in Java, simply because it's the only language that I'm any good at☺.

UI is implemented with JavaFX - quite a sleek look!

Without further ado I'll just share the JAVA SOURCE CODE (IntelliJ IDEA project, although considering it uses maven it can be assembled with mvn clean install command or packaged into a single executable JAR with mvn clean compile assembly:single), alongside with FULL SOURCE CODE FOR BLUEPILL.

Final thoughts

One thing I haven't managed to do with STM32 is to reduce current consumption to datasheet-indicated levels. K-log currently consumes 6mA in config. mode and 30mA while logging, which is fine, but what really ticks me off is 25 microamps consumed in STANDBY mode. It should be about 2-5 microamps and I would be grateful for any advice on how to reduce this tenfold engorgement on my coin cell.

I'd like to encourage my readers to replicate this device and share the pictures and ideas☺. I'd love to see how yours turned out.

UPDATE 27 Nov. 2018:

Lup Yuen Lee together with Upton Lai trumped my humble 25 microamp consumption - getting it as low as around 10 microamps!

Comments

  1. Hi!
    Great work!
    i am in my firts steps on stm32 enviroment, an i have serial problems with the "blue pill" (it isn't a drugs problem). I can't reduce the power consuption of the stm32f103c8 microcontroller. I removed the regulator RT9193-33, the led green and led power; with their own resistors. I have been working with keil uvision with stm32cubemx and the minimun current drawned for the microcontroller (without any external device) are 2,8 mA. Any suggestions?

    this is the code on the while:
    HAL_ResumeTick();
    SystemClock_Config();
    HAL_PWR_EnableWakeUpPin(PWR_CSR_EWUP);
    __HAL_PWR_CLEAR_FLAG(PWR_FLAG_WU);
    HAL_PWR_EnterSTOPMode(PWR_LOWPOWERREGULATOR_ON, PWR_STOPENTRY_WFI );

    ReplyDelete
    Replies
    1. Your microcontroller is entering Stop mode, which is not the lowest-consuming mode. If you want to go for the lowest consumption, try Standby mode - the current should taper off from milliamps to microamps.

      Delete
  2. Hello Mr. Panov. I was taking a look at your work and it´s very interesting, congratulations! Where could I insert a ADC code to use a PT100 sensor instead of a DS18B20? In my idea of application it would be necessary a more resistent sensor because of the temperature+umidity+substances it would be exposed. Could you please help me with it!? Also, could you give me an idea of how this ADC code would be in this case?! Thank you in advance.

    ReplyDelete
    Replies
    1. Hi Felix!

      I'm afraid that to give you that kind of information, I'd need to sift through the whole source code again and recall how it works, because it's been quite a while since I wrote that one :-) . I do not have (and neither did I do anything like that in the past) any experience with ADC on STM32, but I believe that with StdPeriph libraries it would be as easy as grabbing one of the stock examples that come with the library and copy/pasting it someplace in my code instead of 1Wire implementation for DS18B20.

      Good luck with that and let me know it you manage to get it working with PT100! I could attach your code here, provided it's not close source.

      Delete
    2. Hello again Mr. Panov. It´s necessary a "software" to set the correct date and time to the datalogger, right!? Is it possible to download it!? I couldn´t find it here on your blog. Thanks.

      Delete
    3. Hey Felix!
      It's right here on this page, under the screenshot of Java app. The link says "Java source code".

      Delete
    4. Hi Vadim: Thanks for the excellent post! It inspired my friend Upton and I to test whether off-the-shelf Blue Pill can really hit 10 microAmperes. We had to desolder the Power LED and 5V-To-3V Regulator. More details: https://www.linkedin.com/feed/update/urn:li:activity:6473079182715863040

      Delete
  3. Hello! :) I have a question about SD Card connection. You used pins: PA4, PA5, PA6 and PA7. Why did you use these pins? I am asking because I am wondering what pins can be used if I use STM32F103RBT6. Regards!:)

    ReplyDelete
    Replies
    1. They're SPI1 pins:
      PA4=SPI1_NSS,
      PA5=SPI1_SCK,
      PA6=SPI1_MISO,
      PA7=SPI1_MOSI

      Delete
  4. Hello again, sir :) I have a question - does the MicroSD need to use pull ups? I see your schematic without MicroSD pullup resistors. Regards!

    ReplyDelete
    Replies
    1. Hi! It's hard to recall every exact detail right now - I made this almost 3 years ago - but I hate the schematics where the "obvious" parts are omitted, so I never omit any details on schematic myself. If there's no pullups on the schematic, that means they're most likely not needed.

      Delete

Post a Comment