ESP_IOT v2.5
IOT ESP Coding
ATOM_SM.h
Go to the documentation of this file.
1//
2// ATOM_SM.hpp
3// M5ATOM_Testing
4//
5// Created by Scott Moody on 12/18/23.
6//
7
8#ifndef ATOM_SM_hpp
9#define ATOM_SM_hpp
10#include "../../Defines.h"
11#include <stdio.h>
12
13#ifdef ATOM_QRCODE_MODULE
14
15//! process the semantic marker (maybe from a click or a scan)
16//! If a SMART button, it will tack on username, password and optionally scannedDevice
17//! 12.15.23
18//! Added passing lastSemanticMarker .. this is for the /scannedDevice to recursively call itself
19//! (so parms are substituded)
20boolean ATOM_processSemanticMarker(char *semanticMarker, char *lastSemanticMarker);
21#endif
22#endif /* ATOM_SM_hpp */
boolean ATOM_processSemanticMarker(char *semanticMarker, char *lastSemanticMarker)
Definition: ATOM_SM.cpp:35