Hackeet
Published © GPL3+

Blinking LED & Low-Code: Arduino/ESP8266 and Hackeet Basics

Blink an LED from your smartphone without any coding thanks to Hackeet, a private-by-design low-code application development platform.

BeginnerFull instructions provided1 hour2,670

Things used in this project

Story

Read more

Custom parts and enclosures

Application Hackeet Diagram

Schematics

Circuit

Code

Settings.h example

C/C++
The following configuration is an example of a Settings.h file used for an ESP8266 connected to a local network called sample_network using connection security key security_key_example
//-------------------------------------------------------------------------------//
//                            BOARD SETTINGS                                     //
// Specify here the type of board you're using and your credentials to connect   //
// the board to network using Wifi                                               //
// ------------------------------------------------------------------------------//
// Settings                                                                      //
// --------                                                                      //
//                                                                               //                                             
// Set Board macro to :                                                          //
//     Arduino_Uno when using Hackeet with an Arduino Uno board                  //
//     Esp8266 when using Hackeet with an ESP8266 board                          //
//                                                                               //
// Set Wifi_Enabled to :                                                         //
//     0 to disable Wifi                                                         //
//     1 to enable Wifi                                                          //
// Note : When Board is set to Esp8266, Wifi is always enabled                   //
//                                                                               //
//-------------------------------------------------------------------------------//
// Compilation Notes :                                                           //
// -------------------                                                           //
//  Set your Arduino IDE Board option                                            //
//          - Arduino/Genuino Uno when compiling for Arduino                     //
//          - NodeMCU 1.0(ESP-12E  Module) when compiling for NodeMCU Esp8266    //
//-------------------------------------------------------------------------------//
#define Board Esp8266
#define Wifi_Enabled 1
#define Baud_Rate 9600
char ssid[] = "sample_network";
char pass[] = "security_key_example";
int port = 80;

Application Configuration File Example

JSON
Settings and User Interface definition for the application.
You can copy and past it directly in the configuration file of your application.
{
	"documentation":
	{
		"version":"1.0.0",
		"title":"Title of your web service here",
		"description":"Description of the web service here",
		"license":"Link to the web service license file"
	},
	"server":
	{
		"server_name":"MyWebApp",
		"root":".",
		"bot_file":"application.example.LED.web.app.bot",
		"index":"/themes/default/index.html",
		"login":"/themes/default/login.html",
		"http_port":8100,
		"auth":"Auth",
		"application_directory":"C:/Hackeet/",
		"pages":{}
	},
	"settings":
	{
	},
	"interface":
	{
		"screens":
		[
			{
				"id": "screen_1",
				"title": "The Switch Element",
				"widgets": [
					{
						"id": "widget_1",
						"io": "Commands",
						"field": "led",
						"type": "switch",
						"on": "Turn On",
						"off": "Turn Off",
						"label": "LED #1"
					}
				]
			}
		]
	}
}

Credits

Hackeet

Hackeet

3 projects • 6 followers
A Cost-Effective Low-Code platform, for makers, citizen developers and IT experts

Comments