NEQTO Docs
  • Languages iconEnglish
    • 日本語
  • Docs
  • Region API
  • Global API
  • FAQ

›Getting Started

Getting Started

  • NEQTO Hello World!
  • Step 1. Console Settings
  • Step 2. Device Setting & Start Service

    • When using NEQTO Bridge
    • When using Spresense
  • Step 3. Using Sensors

NEQTO

  • NEQTO Account Registration
  • API Usage
  • Batch Registration
  • Support Guidelines

NEQTO Console

  • Introduction
  • Fundamentals
  • Administrative Actions
  • Device Management
  • Scripts
  • Actions and Contacts
  • NEQTO Apps
  • Machine Driver
  • Recommended Browsers
  • Billing Information

SPRESENSE

    Hardware Specifications

    • 01. About Spresense

    Software Specifications

    • 01. Operational Flow
    • 02. Initial Installation
    • 03. Spresense Wi-Fi Initial Setup
    • 05. Debug Log Acquisition
    • 06. System LED Indications
    • 07. Event Messages
    • 08. Updating Firmware

    neqto.js

    • 01. About neqto.js
    • 02. Log
    • 03. Timers
    • 04. HTTP
    • 05. HTTPS
    • 06. MQTT
    • 07. Secure
    • 08. Storage
    • 10. RTC
    • 12. GPIO
    • 13. UART
    • 15. I2C
    • 17. Camera
    • 18. nqSpresense
    • 19. nqService
    • 20. nqMqtt
    • 21. nqFOTA
    • 22. nqWiFi

NEQTO Bridge Series

    Hardware Specifications

    • 01. NEQTO Bridge Module
    • 02. NEQTO Bridge Wi-Fi Module
    • 03. NEQTO Bridge LTE-1 Module
    • 04. NEQTO Bridge LTE-M/NB Module
    • 05. NEQTO Bridge IO Board
    • 06. NEQTO Bridge Digital IO Board

    Software Specifications

    • 01. Operational Flow
    • 02. NEQTO Bridge Wi-Fi Module Initial Setup
    • 03. NEQTO Bridge LTE Module Initial Setup
    • 04. Debug Log Acquisition
    • 05. System LED Indications
    • 06. Event Messages
    • 07. Updating Firmware

    neqto.js

    • 01. About neqto.js
    • 02. Log
    • 03. Timers
    • 04. HTTP
    • 05. HTTPS
    • 06. MQTT
    • 07. Secure
    • 08. Storage
    • 09. Sleep
    • 10. RTC
    • 11. UserSW
    • 12. GPIO
    • 13. UART
    • 14. SPI
    • 15. I2C
    • 16. ADC
    • 17. BLE
    • 18. nqBridge
    • 19. nqService
    • 20. nqMqtt
    • 21. nqFOTA
    • 22. nqWiFi
    • 23. nqLte
    • 24. nqLAN
    • 25. nqEx

neqto.js Libraries

    I2C

    • LIS2DW12 v2 Accelerometer
    • HTS221 v2 Temperature and Humidity Sensor
    • [Archive] LIS2DW12 Accelerometer
    • [Archive] HTS221 Temperature and Humidity Sensor

    Integration

    • AWS IoT Core v2 Library
    • AWS S3 v2 Library
    • Azure IoT v2 Library
    • GCP IoT Core Library
    • [Archive] AWS S3 Library
    • [Archive] AWS IoT Core Library

neqto.js Snippets

  • DataDog Snippet
  • Dropbox Snippet
  • Google Sheets Snippet
  • InfluxDB Snippet
  • Oracle Cloud Object Storage Snippet
  • Salesforce Snippet
  • SAP Cloud Platform Internet of Things Snippet
  • Splunk Snippet
  • Niagara Snippet

Release Notes

  • NEQTO Console Updates
  • NEQTO Firmware (Bridge Wi-Fi/LTE Module) Releases
  • NEQTO Firmware (Spresense Wi-Fi) Releases

Step 1. Console Settings

Overview

Step 1 of the tutorial describes the various features of NEQTO Console. After completing this step, you will be able to complete the preparations for outputting "Hello World".

For related information, see below for related resources.

Configuring NEQTO Console

Step 1. Login to NEQTO

NEQTO Console's Login Documentation

Access the login URL below, enter your login information, and click the login button:

https://console.neqto.com/login

If you have not created a NEQTO account, please refer to the registration guide here.

Step 2. Register Device

NEQTO Console's Device Documentation

Devices are synonymous with physical devices, and are associated with Nodes for management in the NEQTO Console. An unassigned NEQTO license is required to register a device.

Select "Manage Devices" from the account menu on the top right.

Click the "+ Add Device" button, then register a device using the details below.

When using NEQTO Bridge:

FieldDescription
Device TypeNEQTO Brigde
License Type*Trial: Bridge
Serial IDEnter the Serial ID of the NEQTO Bridge you purchased.
Product KeyEnter the Product Key of the NEQTO Bridge you purchased.
* Requires selecting the "Create a new license for this device" checkbox

Click the "Save" button. After registering, click the “Home” button in the breadcrumbs to return to the Group list.

When using Spresense:

FieldDescription
Select Device TypeSony Spresense
Select License Type*Trial: Spresense
* Requires selecting the "Create a new license for this device" checkbox

Click the "Save" button. After registering, click the “Home” button in the breadcrumbs to return to the Group list.

Step 3. Register Group

NEQTO Console's Group Documentation

Groups are a feature for grouping and managing resources in the NEQTO Console.

Click the "+ Add Group" button then create a Group with the details shown below.

FieldDescription
NameTEST
Optional ServiceNot required at this time, as we will not use any optional services.

Click the "Save" button. Next, please click on the Group we just registered.

Step 4. Register Script

NEQTO Console's Script Documentation

Scripts are logic that can be run on the device. Devices registered on the NEQTO Console can perform edge processing via Scripts. For this tutorial, "Hello World" will be output on the device console.

From the menu, select the "Scripts" tab. Then click "+ Add Script" to create the "Hello World" script as shown below.

FieldDescription
NameHello World
NoteOptional field

Click the "Save" Button.

In the Scripts list menu on the left, click the newly created "Hello World" script to view the editor.

Copy the sample code below, then paste the code to the editor and click the "Save" button.

Sample code

//==============================================================
//  Sample scenario
//==============================================================
//  Output "Hello World" to the log
//==============================================================

log.setLevel(0,2); //-1:NONE 0:ERROR 1:WARNING 2:DEBUG 3:TRACE, 0:DISABLE 1:LOG 2:CONSOLE 3:BOTH
log.printLevel(2);  //0:DISABLE 1:LOG 2:CONSOLE 3:BOTH

var timerInterval = 1000;   //ms
var maxNumOfTimes = 60;

//==============================================================
//  Main Loop
//==============================================================
var loopcnt = 0;
var to = setInterval(function() {
    var date = new Date();
    print(date.toString() + '+' +  date.getMilliseconds() + 'ms : Hello World!!! ' + loopcnt);
    if(++loopcnt >= maxNumOfTimes) {
        clearInterval(to);
    }
}, timerInterval);

Step 5. Register Template

NEQTO Console's Template documentation

Templates set the physical hardware definition and software configuration of the device. Components (the hardware connected to the NEQTO device) are set for each template. Please note that the types of firmware that can be used vary depending on the device type.

From the menu, select the "Templates" tab, then click "+ Add Template" to create a new template with the details shown below.

FieldDescription
NameSample Template
Device TypeSelect NEQTO Bridge Wi-Fi, NEQTO Bridge LTE, or Spresense Wi-Fi based on the model you purchased and will be using.
Device FirmwareSelect the latest firmware version.
Machine Driver PackageNot required at this time, as we will not use any optional services.
ScriptSelect the previously created "Hello World" Script.

When using NEQTO Bridge:

When using Spresense:

Click the "Save" button.

Step 6. Register Node

NEQTO Console's Node Documentation

Nodes in the Console represent a set of a Device and a Template and correspond to a single physical device.

From the menu select the "Nodes" tab, then add a node using the details below.

FieldDescription
NameSample Node
TemplateSample Template
Device InformationSelect the Device ID of the previously registered device.

Click the "Save" button.

NEQTO Console settings are now complete.

Related resources

  • Register Group
  • Register Script
  • Register Template
  • Register Device
  • Register Node

Updated: 2021-02-22
← NEQTO Hello World!When using NEQTO Bridge →
  • Overview
  • Configuring NEQTO Console
    • Step 1. Login to NEQTO
    • Step 2. Register Device
    • Step 3. Register Group
    • Step 4. Register Script
    • Step 5. Register Template
    • Step 6. Register Node
    • Related resources
AboutNewsProductsFAQPrivacy Policy}
NEQTO Console
IntroductionFundamentalsAdministrative ActionsDevice Management NEQTO Apps
NEQTO Bridge Series
NEQTO Bridge ModuleNEQTO Bridge Wi-Fi ModuleNEQTO Bridge LTE-1 ModuleError Logging Event Messages
API Documentation
API UsageGlobal APIRegional APIAPI Terms of Service
Jigsaw, Inc.
© 2021 JIG-SAW INC.