Hi,
If you just want to add a message on the checkout it's really simple. Go in the menu Display>Views, edit the file "cart" or "shipping" or "step" of the view "checkout" and enter your text or HTML at the top of the file.
If you want to add a condition based on the total of the cart, it's quite easy if you know a bit of PHP. For example, on the "cart" view file:
<?php if($this->full_total->prices[0]->price_value_with_tax <= XXX) { ?>
My text message
<?php } ?>
where XXX is to be replaced by the price threshold.