Sale!

STM8S105K4T6 BREAKOUT BOARD 5V ET756222

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

  • ARDUINOIDE SUPPORT (INSTALL SDUINO BOARD.)

4 in stock

Quantity Discount (%) Price
1 - 49 25 % 150.00
50+ 5 % 190.00
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 STM8S105K4T6 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
}