research application on sending data to headend

Dependencies:   DataStore JobScheduler NetworkServices W5500Interface nanopb protocol

See "main.cpp" documentation on "API Documentation" tab for details about application.

Revision:
4:b360d4f0bf34
Child:
27:60c12f3f3430
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/source/jobFakeADC.h	Fri Jul 14 00:13:32 2017 +0000
@@ -0,0 +1,23 @@
+#pragma once
+
+#include "mbed.h"
+#include "lceProxy.h"
+
+class JobFakeADC {
+    public:
+    
+    static void RunAdapter(void *thisPointer) {
+        JobFakeADC *self = static_cast<JobFakeADC*>(thisPointer);
+        self->Run();
+    }
+    
+    JobFakeADC(LceProxy& lce): _lce(lce), _next(1) {}
+    
+    void Run();
+    
+    private:
+    
+    LceProxy& _lce;
+    int _next;
+    
+};
\ No newline at end of file