GM6000 Digital Heater Controller Branch: main
SDX-1330
ArduinoHelpers.h
Go to the documentation of this file.
1#ifndef Cpl_Json_ArduinoHelpers_h_
2#define Cpl_Json_ArduinoHelpers_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 Contains a collection of 'helper' function (mostly for debugging) when
16 using JsonArduino tool.
17*/
18
19#include "Cpl/Json/Arduino.h"
20
21
22///
23namespace Cpl {
24///
25namespace Json {
26
27/** This method dumps the contents of the JSON object/array to the trace output.
28
29 Note: This method uses the heap to temporarily allocate memory
30 */
31void dumpToTrace( const char* traceSection, const JsonVariant& srcObjToDump ) noexcept;
32
33
34
35}; // end namespaces
36};
37#endif // end header latch
void dumpToTrace(const char *traceSection, const JsonVariant &srcObjToDump) noexcept
This method dumps the contents of the JSON object/array to the trace output.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20