Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Printer.h
- Committer:
- irsanjul
- Date:
- 2019-07-05
- Revision:
- 0:7f3d28e53383
- Child:
- 1:f257e2e4e026
File content as of revision 0:7f3d28e53383:
#ifndef _PRINTER_H_ #define _PRINTER_H_ #include "TMU220.h" #include <string> #include <vector> // ============================================================================= class PrinterFormat { public: int id; string spbu; string telp; uint8_t first_nozle; int JumlahFillingPoint; vector<string> prodak; vector<string> alamat; vector<string> footer; }; // ============================================================================= class ResultParsing { public: bool valid; uint8_t id; float volume; int money; int ppu; string product; uint8_t type; }; // ============================================================================= class Printer { public: Printer(PinName tx_, PinName rx_, int baud_=9600); ~Printer(); void init(const PrinterFormat &pf); void create_header(); void TestPrint(const std::time_t &now); void PrintStruk(const std::time_t &now, const char *datain, const unsigned int &no_nota, const uint8_t &nozz, const uint8_t pipa, const string &Nopol, const string &Odo); void PrintStruk(const std::time_t &now, const ResultParsing &res, const unsigned int &no_nota, const string &Nopol, const string &Odo); void DebugStruk(const std::time_t &now, const ResultParsing &res, const unsigned int &no_nota, const string &Nopol, const string &Odo); void TestPrint2(); private: TMU220 Tm; PrinterFormat Pf; string get_product(const uint8_t code); static const char * const days[]; static const char * const mons[]; }; #endif // _PRINTER_H_