JsonConfigFile.ino 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. // ArduinoJson - arduinojson.org
  2. // Copyright Benoit Blanchon 2014-2019
  3. // MIT License
  4. //
  5. // This example shows how to store your project configuration in a file.
  6. // It uses the SD library but can be easily modified for any other file-system.
  7. //
  8. // The file contains a JSON document with the following content:
  9. // {
  10. // "hostname": "examples.com",
  11. // "port": 2731
  12. // }
  13. //
  14. // https://arduinojson.org/v6/example/config/
  15. #include <ArduinoJson.h>
  16. #include <SD.h>
  17. #include <SPI.h>
  18. // Our configuration structure.
  19. //
  20. // Never use a JsonDocument to store the configuration!
  21. // A JsonDocument is *not* a permanent storage; it's only a temporary storage
  22. // used during the serialization phase.
  23. struct Config {
  24. char hostname[64];
  25. int port;
  26. };
  27. const char *filename = "/config.txt"; // <- SD library uses 8.3 filenames
  28. Config config; // <- global configuration object
  29. // Loads the configuration from a file
  30. void loadConfiguration(const char *filename, Config &config) {
  31. // Open file for reading
  32. File file = SD.open(filename);
  33. // Allocate a temporary JsonDocument
  34. // Don't forget to change the capacity to match your requirements.
  35. // Use arduinojson.org/v6/assistant to compute the capacity.
  36. StaticJsonDocument<512> doc;
  37. // Deserialize the JSON document
  38. DeserializationError error = deserializeJson(doc, file);
  39. if (error)
  40. Serial.println(F("Failed to read file, using default configuration"));
  41. // Copy values from the JsonDocument to the Config
  42. config.port = doc["port"] | 2731;
  43. strlcpy(config.hostname, // <- destination
  44. doc["hostname"] | "example.com", // <- source
  45. sizeof(config.hostname)); // <- destination's capacity
  46. // Close the file (Curiously, File's destructor doesn't close the file)
  47. file.close();
  48. }
  49. // Saves the configuration to a file
  50. void saveConfiguration(const char *filename, const Config &config) {
  51. // Delete existing file, otherwise the configuration is appended to the file
  52. SD.remove(filename);
  53. // Open file for writing
  54. File file = SD.open(filename, FILE_WRITE);
  55. if (!file) {
  56. Serial.println(F("Failed to create file"));
  57. return;
  58. }
  59. // Allocate a temporary JsonDocument
  60. // Don't forget to change the capacity to match your requirements.
  61. // Use arduinojson.org/assistant to compute the capacity.
  62. StaticJsonDocument<256> doc;
  63. // Set the values in the document
  64. doc["hostname"] = config.hostname;
  65. doc["port"] = config.port;
  66. // Serialize JSON to file
  67. if (serializeJson(doc, file) == 0) {
  68. Serial.println(F("Failed to write to file"));
  69. }
  70. // Close the file
  71. file.close();
  72. }
  73. // Prints the content of a file to the Serial
  74. void printFile(const char *filename) {
  75. // Open file for reading
  76. File file = SD.open(filename);
  77. if (!file) {
  78. Serial.println(F("Failed to read file"));
  79. return;
  80. }
  81. // Extract each characters by one by one
  82. while (file.available()) {
  83. Serial.print((char)file.read());
  84. }
  85. Serial.println();
  86. // Close the file
  87. file.close();
  88. }
  89. void setup() {
  90. // Initialize serial port
  91. Serial.begin(9600);
  92. while (!Serial) continue;
  93. // Initialize SD library
  94. while (!SD.begin()) {
  95. Serial.println(F("Failed to initialize SD library"));
  96. delay(1000);
  97. }
  98. // Should load default config if run for the first time
  99. Serial.println(F("Loading configuration..."));
  100. loadConfiguration(filename, config);
  101. // Create configuration file
  102. Serial.println(F("Saving configuration..."));
  103. saveConfiguration(filename, config);
  104. // Dump config file
  105. Serial.println(F("Print config file..."));
  106. printFile(filename);
  107. }
  108. void loop() {
  109. // not used in this example
  110. }
  111. // See also
  112. // --------
  113. //
  114. // https://arduinojson.org/ contains the documentation for all the functions
  115. // used above. It also includes an FAQ that will help you solve any
  116. // serialization or deserialization problem.
  117. //
  118. // The book "Mastering ArduinoJson" contains a case study of a project that has
  119. // a complex configuration with nested members.
  120. // Contrary to this example, the project in the book uses the SPIFFS filesystem.
  121. // Learn more at https://arduinojson.org/book/
  122. // Use the coupon code TWENTY for a 20% discount ❤❤❤❤❤