Sale!

STM8S005K6T6CTR LQFP32 BREAKOUT BOARD 5V ET7402

Original price was: 150.00₹.Current price is: 100.00₹.

  • ARDUINOIDE SUPPORT (INSTALL SDUINO BOARD.)

5 in stock

Quantity Discount (%) Price
1 - 49 33.33 % 100.00
50+ 5 % 142.50
x

Description

  • INPUT  SUPPORT 5V  OR  3.3V COMPATIBLE
  • Board color may be different
  • High quality FR4 DOUBLE SIDE pcb
  • Brand -Emerging Technologies

ARDUINOIDE SUPPORT

  • INSTALL SDUINO BOARD IN ARDUINOIDE  (https://github.com/tenbaht/sduino )
  • USE STLINK V2 TO PROGRAM (YOU CAN ALSO BURN BOOT LOADER )
  • SELECT BOARD STM8S105K6 AS PER PICTURE .
  • ARDUINOIDE DOES NOT SUPPORT ALL PINS LIKE CRYSTAL OSCILATOR PINS

SAMPLE PROGRAM

#define led PC5
void setup()
{
pinMode(led , OUTPUT);
}

void loop()
{
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(500); // wait for a second
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(500); // wait for a second
}