feat:V1.0 #8

Merged
Clement merged 58 commits from develop into master 2024-02-02 16:03:25 +00:00
3 changed files with 2 additions and 17 deletions
Showing only changes of commit b3ef581d28 - Show all commits

View File

@ -27,4 +27,5 @@ build_flags =
-D STEPER_SPEED=1000 ; 12000
; nfc addr
-D NFC_ADDR=0x28

View File

@ -1,10 +1,3 @@
/*
** EPITECH PROJECT, 2024
** T-IOT-901_convoyor
** File description:
** NfcReader
*/
#include "NfcReader.h"
NfcReader::NfcReader(int i2c_adress)
@ -13,8 +6,6 @@ NfcReader::NfcReader(int i2c_adress)
this->mfrc522->PCD_Init();
}
NfcReader::~NfcReader() {}
String NfcReader::ReadNfc()
{
this->uid.clear();

View File

@ -1,10 +1,3 @@
/*
** EPITECH PROJECT, 2024
** T-IOT-901_convoyor
** File description:
** NfcReader
*/
#ifndef NFCREADER_H
#define NFCREADER_H
@ -15,7 +8,7 @@
class NfcReader {
public:
NfcReader(int i2c_adress);
~NfcReader();
~NfcReader() = default;
String ReadNfc();