GY-63_MS5611/libraries/Currency
2022-04-15 14:48:42 +02:00
..
.github/workflows 0.1.2 Currency 2021-10-20 11:24:55 +02:00
examples 0.1.6 Currency 2022-04-15 14:48:42 +02:00
test 0.1.3 Currency 2021-12-14 22:08:54 +01:00
.arduino-ci.yml 0.1.2 Currency 2021-10-20 11:24:55 +02:00
currency.cpp 0.1.6 Currency 2022-04-15 14:48:42 +02:00
currency.h 0.1.6 Currency 2022-04-15 14:48:42 +02:00
keywords.txt 0.1.3 Currency 2021-12-14 22:08:54 +01:00
library.json 0.1.6 Currency 2022-04-15 14:48:42 +02:00
library.properties 0.1.6 Currency 2022-04-15 14:48:42 +02:00
LICENSE 0.1.3 Currency 2021-12-14 22:08:54 +01:00
README.md 0.1.5 Currency 2021-12-15 11:20:58 +01:00

Arduino CI Arduino-lint JSON check License: MIT GitHub release

Currency

Arduino library to help formatting integers for printing as currency.

Warning: experimental

Description

The currency library contains a number of functions that help to print integers as currency.

The currency functions assume you do the currency math in integer units. For dollars and euro's this would be cents. For numbers with more decimals it is a smaller unit.

Using integers makes addition, subtraction and multiplication of currency exact.

The library has experimental wrappers for float/double values. Not tested extensively yet.

Choosing int32_t as 'base' also means that there is a limit in terms of minimum and maximum values. When large amounts are needed one can use the currency64() or one of its derived formatters as this is based upon int64_t numbers.

There is a relation with the printHelpers class - https://github.com/RobTillaart/printHelpers When this currency library has matured it might be merged with printHelpers.

Interface

The following functions are implemented:

Core function

  • char * currency(int32_t value, uint8_t decimals, char decimalSeparator, char thousandSeparator, char symbol);
  • char * currency64(int64_t value, uint8_t decimals, char decimalSeparator, char thousandSeparator, char symbol);

int32 Wrapper functions

  • char * bitcoin(int32_t value)
  • char * dollar(int32_t value)
  • char * euro(int32_t value)
  • char * pound(int32_t value)
  • char * roubles(int32_t value)
  • char * yen(int32_t value)
  • char * yuan(int32_t value)

int64 Wrapper functions

  • char * bitcoin64(int64_t value)
  • char * dollar64(int64_t value)
  • char * euro64(int64_t value)
  • char * pound64(int64_t value)
  • char * roubles64(int64_t value)
  • char * yen64(int64_t value)
  • char * yuan64(int64_t value)

float Wrapper functions

Experimental - not tested

All assumes 2 decimals except bitcoin which has 6.

  • char * bitcoinf(double value)
  • char * dollarf(double value)
  • char * eurof(double value)
  • char * poundf(double value)
  • char * roublesf(double value)
  • char * yenf(double value)
  • char * yuanf(double value)

Operation

See examples.

Performance

Performance is hard to optimize. Most time is spend in splitting individual digits (div / mod 10).

Future

won't

  • currency conversion?
    • intern all in ???