System to manage inventory for a cooler. Allows real time check in of products via RFID, as well as check out. Also includes a scale to weigh products upon check out, and has a real time temperature tracking system that sounds an alert if the cooler gets too hot.

Dependencies:   DHT11 HX711 MFRC522 SDFileSystemEditied mbed

product.h

Committer:
vincentrc
Date:
2018-03-07
Revision:
0:ad334aa4c7c4

File content as of revision 0:ad334aa4c7c4:

#ifndef product_H
#define product_H

//Product structure
struct product
{
    char pname[50];
    unsigned int pid[4];
    unsigned int count;
    float priceper;
    float weight;

    struct product *next;

};


#endif