Contents
Tags
Android Arduino ARM ATmega ATmega2560 avr C++ C++0X C++1X C++17 CH340 CH341 cojson configuration Controllino Cortex-M0 Cortex-M4 DLNA embedded embedded systems ESP8266 FTDI HTTP json JSON-RPC JSON for embedded systems json parser json serializer logging low end MCU MCU minidlna OpenIndiana Particle Photon PL2303 PSoC REST SFINAE template UART USB USB descriptor template USBUART vlcArchives
- October 2024
- December 2023
- January 2020
- March 2019
- October 2018
- September 2018
- April 2018
- December 2017
- April 2017
- March 2017
- June 2016
- October 2015
- April 2015
- March 2015
- November 2014
- November 2012
- March 2010
- December 2009
- November 2009
- July 2009
- March 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- April 2003
Categories
Meta
Monthly Archives: October 2018
COJSON library for Arduino
Friday, October 19, 2018
COJSON library is also available as Arduino Studio .ZIP library: cojson.zip.
cojson tutorial for C++17
Monday, October 15, 2018
C++17 has simplified use of template parameters. Instructions, given in this tutorial, describes how to define JSON model with cojson::autos templates. Note: GCC 7 or higher is required to compile cojson_autos.hpp !
COJSON Code Generator
Monday, October 8, 2018
cojson v.2 offers an easy start option by using C++ code automatically generated from a JSON sample the user needs to parse or to write. To use this option just open codegen page, load or copy-&-paste your JSON and copy-&-paste or save the generated C++ code. And then build your application with cojson sources .
Enabling C++ for PSoC projects
Saturday, October 6, 2018
PSoC — Programmable System on Chip - is an ARM Cortex based family of MCUs (wiki) by Cypress Semiconductor. Cypress offers developers a dedicated IDE - PSoC Creator. Unfortunately, PSoC Creator, (as of version 4.2) does not support C++, despite the underlying GGC Toolchain (arm-none-eabi-gcc-5.4) has C++ support at descent level. PSoC Creator has an […]