Andri YadiRia Sri Rahayu
Published © GPL3+

Getting Started with ESPectro Core

Get started on using the ESPectro Core development board by making it say “Hello, world!” through its blinking lights.

BeginnerShowcase (no instructions)30 minutes888
Getting Started with ESPectro Core

Things used in this project

Hardware components

ESPectro Core
Makestro ESPectro Core
×1

Story

Read more

Schematics

ESPectro Core Pins

Code

blink.ino

Arduino
// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

Credits

Andri Yadi

Andri Yadi

11 projects • 86 followers
An entrepreneur. IoT, iOS, Node.js, Azure developer and influencer. Hackster Live Ambassador for Indonesia. Microsoft MVP of Azure.
Ria Sri Rahayu

Ria Sri Rahayu

2 projects • 14 followers

Comments