Cirineu - EngeBOT Technology - member
Published © GPL3+

0 - Creating a super blink with the Tatamaya BLACK

In this example we will teach you to create a super blink with the Tatamaya black

BeginnerFull instructions provided3 minutes556
0 - Creating a super blink with the Tatamaya BLACK

Things used in this project

Hardware components

EngeBOT Technology Tatamaya BLACK
Tatamaya BLACK super shield for IoT.
×1
Arduino UNO
Arduino UNO
Arduino Uno or Chipkit
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

EngeBOT Technology Tatamaya BLACK

Story

Read more

Code

Blink all Leds of Tatamaya Black

C/C++
In this example we will demonstrate to you easily how to make a simple blink activating all the LEDs of the Tatamaya BLACK.
/*
  EngeBOT Technology - adapted By Cirineu
  www.engebot.com
  www.linkedin.com/in/cirineu-carvalho-fernandes-20490a37
  www.facebook.com/engebot.tecnologia
  www.instagram.com/engebot.technology
  br.pinterest.com/engebottechnology
  Blink
  Turns on an LED on for one second, then off for one second, repeatedly.
 
  This example code is in the public domain.
 */
int time=1000;
void setup() {                
  // initialize the digital pin as an output.
  // Pin 13 has an LED connected on most Arduino boards:
  pinMode(13, OUTPUT);
  pinMode(6, OUTPUT);
  pinMode(2, OUTPUT);
  pinMode(10, OUTPUT);
  pinMode(11, OUTPUT);
  pinMode(12, OUTPUT);
  pinMode(3, OUTPUT);
 // pinMode(12, OUTPUT);
    
}

void loop() {
	
  digitalWrite(13, HIGH);   // set the LED on
  digitalWrite(6, HIGH);
  digitalWrite(2, HIGH);   // set the LED on
  digitalWrite(10, HIGH);   // set the LED on
  digitalWrite(11, HIGH);   // set the LED on
  digitalWrite(12, HIGH);   // set the LED on
  digitalWrite(3, HIGH);   // set the LED on
  
  delay(time);              // wait for a second
  
  digitalWrite(13, LOW);    // set the LED off
  digitalWrite(6, LOW);    // set the LED off
  digitalWrite(2, LOW);    // set the LED off
  digitalWrite(10, LOW);    // set the LED off
  digitalWrite(11, LOW);    // set the LED off
  digitalWrite(12, LOW);    // set the LED off
  digitalWrite(3, LOW);    // set the LED off
  
  delay(time);              // wait for a second
  
  
}

Credits

Cirineu - EngeBOT Technology - member
2 projects • 0 followers
EngeBOT Technology - members team.

Comments