Advertisement
Guest User

MicroController over Network protocol

a guest
Oct 13th, 2015
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. Protocol:
  2. Send command: "MCoN", COMMAND, [COMMAND PARAMETER, ...]
  3. Receive return data: "MCoN", COMMAND, [various return], [string error]
  4.  
  5. -- Maintenance commands
  6.  
  7. SHUTDOWN([string password]): Shut down the microcontroller
  8. return: "MCoN", "SHUTDOWN", [string error]
  9. Shuts down the microcontroller.
  10. Errors:
  11. "Invalid password"
  12.  
  13. REBOOT([string password]): Reboot the microcontroller
  14. return: "MCoN", "REBOOT", [string error]
  15. Reboots the microcontroller.
  16. Errors:
  17. "Invalid password"
  18.  
  19. ADRESS(): Returns the adress of the microcontroller
  20. return: "MCoN", "ADRESS", string adress
  21. Returns the adress of the microcontroller
  22.  
  23. PING([string data])
  24. return: "MCoN", "PONG", [data]
  25. Basic ping
  26.  
  27. STATUS([string password])
  28. return: "MCoN", "STATUS", string status, [string error]
  29. Returns the status of the microcontroller program.
  30. Errors:
  31. "Invalid password"
  32.  
  33. START([string password])
  34. return: "MCoN", "START", [string error]
  35. Starts a new instance of the microcontroller program, drops the old instance if it was running.
  36. Errors:
  37. "Invalid password"
  38.  
  39. STOP([string password])
  40. return: "MCoN", "STOP", [string error]
  41. Stops the current program and drops the instance.
  42. Errors:
  43. "Invalid password"
  44. "Program already stopped"
  45.  
  46. HALT([string password])
  47. return: "MCoN", "HALT", [string error]
  48. Halts the current program.
  49. Errors:
  50. "Invalid password"
  51. "Program already halted"
  52.  
  53. RESUME([string password])
  54. return: "MCoN", "RESUME", [string error]
  55. Resumes the halted instance.
  56. Errors:
  57. "Invalid password"
  58. "Program was stopped"
  59.  
  60. -- Data commands
  61.  
  62. GET([string password]): Retrieve stored program
  63. return: "MCoN", "GET", string data, [string error]
  64. Returns the current program.
  65. Errors:
  66. "Invalid password"
  67.  
  68. GETLINE(number line, [string password]): Retrieve a specified line of the program, returns nil after the end of the program
  69. return: "MCoN", "GETLINE", string data, [string error]
  70. returns a specific line from the current program.
  71. Errors:
  72. "Invalid password"
  73.  
  74. ADDLINE(string line, [string password])
  75. return: "MCoN", "ADD", [string error]
  76. Appends a line to the future program memory.
  77. Errors:
  78. "Invalid password"
  79.  
  80. SET([string password])
  81. return: "MCoN", "SET", [string error]
  82. Sets the current program to the program loaded into memory via addline
  83. Errors:
  84. "Invalid password"
  85.  
  86. SETDATA(string data, [string password])
  87. return: "MCoN", "SETDATA", [string error]
  88. Sets the program to the specified data
  89. Errors:
  90. "Invalid password"
  91.  
  92. -- Admin commands
  93.  
  94. SETPASSWORD(string newpassword, [string oldpassword])
  95. return: "MCoN", "SETPASSWORD", [string error]
  96. Sets the password to the specified value, "" to disable passwords.
  97. Errors:
  98. "Invalid password"
  99.  
  100. GETPASSWORD([string password])
  101. return: "MCoN", "GETPASSWORD", password, [string error]
  102. Gets the current password, "" if no password is set.
  103. Errors:
  104. "Invalid password"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement