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
}