Getting Started

IA Kit Doc

Internal Memory

Appliance Control

Project

Getting Started

Setting Up IA Companion IDE Environment

Getting started with your IA Kit! Test your first-ever C/C++ programming with Serial functions

#include "incipe.h" // include incipe library

void setup()
{
// put your setup code here, to run once when power on:
  incipe.init(); // initialize IA Kit, library init function
  /* USER CODE BEGIN 1 */
  Serial.begin(115200); // opens serial port, sets data rate to 115200 bps
  // Your computer can chat with IA Kit from now on!
  /* USER CODE END 1 */
}

void loop()
{
// put your loop code here, run repeatedly
  incipe.main(); // on-device processing, library main function
  /* USER CODE BEGIN 2 */
  // IA Kit sent you some welcoming message here!
  Serial.println("Hello World");
  Serial.println("from IA Kit!");
  /* USER CODE END 2 */
}

© 2025 INCIPE Academy Limited

Create a free website with Framer, the website builder loved by startups, designers and agencies.