Tactility.py 3.0.0 and SDK updates for 0.7.0-dev (#19)
- Remove `Libraries/Str` - Replaced usage of `TactilityC` FreeRtos features with `TactilityFreeRtos` library - Update `tactility.py` - Removed redundant code from `TactilityCpp`
This commit is contained in:
committed by
GitHub
parent
3bc1e7a373
commit
b6c27b64d4
@@ -4,7 +4,7 @@
|
||||
|
||||
#include <lvgl.h>
|
||||
#include <deque>
|
||||
#include <Str.h>
|
||||
#include <string>
|
||||
#include <TactilityCpp/App.h>
|
||||
|
||||
class Calculator final : public App {
|
||||
@@ -18,8 +18,8 @@ class Calculator final : public App {
|
||||
void handleInput(const char* txt);
|
||||
void evaluateExpression();
|
||||
double computeFormula();
|
||||
static std::deque<Str> infixToRPN(const Str& infix);
|
||||
static double evaluateRPN(std::deque<Str> rpnQueue);
|
||||
static std::deque<std::string> infixToRPN(const std::string& infix);
|
||||
static double evaluateRPN(std::deque<std::string> rpnQueue);
|
||||
void resetCalculator();
|
||||
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user