Learning Shield for Arduino

Learning Shield for Arduino
This learning shield for Arduino takes all the complexity of the hardware and reduces it to a simple interface. These are modular circuit’s boards with extra functionality.

SKU: WUM40749460014

Price: 2.72 $

Product in stock

SSL Certificate
Quantity
Loading Updating cart...

This learning shield for Arduino takes all the complexity of the hardware and reduces it to a simple interface. These are modular circuit’s boards with extra functionality.

Specifications

  • 3 Buttons
  • 4 LEDs
  • Pins connect a serial communication module
  • 7-segment LED display on 4 digits that controlled by two faces 74HC595
  • 10K potentiometer
  • Piezo Buzzer

Sample Code

on / off LED

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
int led = 13;
void setup()
{
  // initialize the digital pin as an output.
  pinMode(led, OUTPUT);
}
void loop()
{
  digitalWrite(led, HIGH);
  delay(1000);
  digitalWrite(led, LOW);
  delay(1000);
}