Elmo Terminal provides functionality to test Lora radio and access SX1272 chip registers delivered with Elmo board. This firmware allows the user to control the LoRa radio parameters (eg. frequency, bandwidth, spreading factor etc.) by entering console commands via serial terminal. Application also contains "Ping-Pong" and data transmission functionalities.

Dependencies:   SX1272lib mbed

Fork of Elmo-Terminal by Michal Leksinski

Revision:
2:8d8295a51f68
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Commands/GetVariableCmd.h	Thu Oct 01 09:40:30 2015 +0200
@@ -0,0 +1,24 @@
+#ifndef _GETVARIABLECMD_H_
+#define _GETVARIABLECMD_H_
+
+#include "Cmd.h"
+
+class Settings;
+
+class GetVariableCmd : public Cmd
+{
+    public:
+        GetVariableCmd(Settings* settings);
+        virtual ~GetVariableCmd();
+
+        static string cmd();
+        static string desc();
+
+        virtual bool execute(list<string> args);
+        virtual string getResponse(void);
+
+    private:
+        Settings* settings_;
+};
+
+#endif // _GETVARIABLECMD_H_