Olayiwola Ayinde ByteHub
Published © CC BY-NC-SA

Blinking an LED with CloudX

This is a tutorial process on how to design your first hello world circuit using the CloudX microcontroller board.

BeginnerFull instructions provided6 minutes471
Blinking an LED with CloudX

Things used in this project

Hardware components

CloudX
×1
5 mm LED: Red
5 mm LED: Red
×1
Male/Female Jumper Wires
Male/Female Jumper Wires
×1
Breadboard (generic)
Breadboard (generic)
×1
USB-A to Micro-USB Cable
USB-A to Micro-USB Cable
×1

Story

Read more

Schematics

CloudX Blink circuit

Code

Blink LED

C/C++
#include  <CloudX\M633.h>

setup(){
           //setup here
   pinMode(1, OUTPUT); // set pin1 as output

loop(){
           //Program here
   pin1 = HIGH;    // Turn ON pin1 
   delay(1000);    // delay for 1second
   pin1 = LOW;     // Turn OFF pin1 
   delay(1000);    // delay for 1second
        }
} 

Credits

Olayiwola Ayinde ByteHub

Olayiwola Ayinde ByteHub

2 projects • 0 followers
An Embedded Systems Engineer, an Inventor, Tech Instructor and Educationist, Opensource Technology enthusiasts, Co-Founder ByteHub Embedded

Comments