Sale!

STM8S003F3P6TR development board 5V sduinoArduino ET5519

Original price was: 80.00₹.Current price is: 40.00₹.

  • Limited period offer.We don’t have any profit on this board. This board dedicated to product development people looking for cost effective and high quality.
  • BOARD COLOR MAY BE DIFFERENT
  • Visit sduino site for more information https://tenbaht.github.io/sduino/hardware/stm8s003/

353 in stock

Quantity Discount (%) Price
1 - 99 50 % 40.00
100+ 51.25 % 39.00
x

Description

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

ARDUINOIDE SUPPORT

  • INSTALL SDUINO BOARD IN ARDUINOIDE  (https://github.com/tenbaht/sduino )
  • USE STLINK V2 TO PROGRAM
  • SELECT BOARD STM8S103F3 AS PER PICTURE .
  • SELECT PROGRAMMER AS STLINK V2

SAMPLE PROGRAM
#define led PB5
void setup()
{
pinMode(led , OUTPUT);
}

void loop()
{
digitalWrite(led, HIGH);
delay(500);

digitalWrite(led, LOW);
delay(500);
}