BRLAB DOCS
HomeTutorialsHardware
IoT Relays with Particle and Blynk
IoT Relays with Particle and Blynk
  • Introduction
  • Getting Started
    • What You Will Need
    • Claim Your Particle Device
    • Setup Your Blynk Account
  • Creating the Web Dashboard
    • Template
    • Data Streams
    • Widgets
    • Widget Settings
    • Finished Web Dashboard
  • Creating the Mobile App
    • Blynk.App
    • Widgets
    • Widget Settings
  • The App Code
    • Particle Web IDE
    • Blynk Library
    • Writing The Code
      • Comment Header
      • Define Blynk Objects
      • Define Global Variables
      • Void Setup()
      • Void Loop()
      • BLYNK_WRITE()
    • Application Code
    • Control The World Around You
  • Resources
    • Blynk Documentation
    • Particle Documentation
Powered by GitBook
On this page
  1. Creating the Web Dashboard

Template

PreviousSetup Your Blynk AccountNextData Streams

Last updated 2 years ago

Now lets build the web dashboard. Click the +New Template button in the top right hand corner.

Give your new template a name. Select the hardware type and connection type that you will be using. Give a description for your new template. This can be anything you want.

Click done when you are finished. This will create the template and open it up in the info tab to continue editing your new template. Under the info tab is were you will find your firmware configuration information.

// FIRMWARE CONFIGURATION
#define BLYNK_TEMPLATE_ID "Enter your template ID here"
#define BLYNK_DEVICE_NAME "Enter your device name here"

This information will be needed later to place into your application code that you will flash to your Argon device.