STM32F103C8T6 (64KB) STM32F103C6T6 (32KB) Minimum System Development Board Module For Arduino

STM32F103C8T6 (64KB) STM32F103C6T6 (32KB) Minimum System Development Board Module For Arduino
รหัสสินค้า M0872
หมวดหมู่ STM32F, STM32L ,STM8S, Nucleo
ราคา 80.00-85.00 บาท
น้ำหนัก 15 กรัม
ลงสินค้า 5 ต.ค. 2564
อัพเดทล่าสุด 2 มี.ค. 2565
กรุณาเลือกชนิดสินค้าด้านล่าง
บัตรประชาชน
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay
STM32F103C8T6 STM32duino (64Kbyte) with Bootloader(Maple COMx)
STM32F103C8T6 STM32duino (64Kbyte) with Bootloader(Maple COMx)
รหัสสินค้า M0743-C8
ราคา 80.00 บาท
น้ำหนัก 15 กรัม
สถานะสินค้า พร้อมส่ง
จำนวน
pcs
หยิบลงตะกร้า
STM32F103C6T6 (32Kbyte FLASH memory)
STM32F103C6T6 (32Kbyte FLASH memory)
รหัสสินค้า M0978-C6
ราคา 85.00 บาท
น้ำหนัก 15 กรัม
ขออภัย สินค้าหมด
แสดงชิ้นที่ 1-2 จากทั้งหมด 2 ชิ้น

STM32F103C8T6 ARM STM32 Minimum System Development Board Module For Arduino

ลง  Bootloader (DFU) Maple ให้ทุกบอร์ดก่อนจัดส่ง

คือสามารถใช้งานได้เลย

Arduino STM32 – USB Serial and DFU

http://www.rogerclark.net/arduino-stm32-usb-serial-and-dfu/

 

STM32F103C8T6.

These features make the STM32F103xx medium-density performance line microcontroller family suitable for a wide range of applications such as motor drives, application control, medical and handheld equipment, PC and gaming peripherals, GPS platforms, industrial applications, PLCs, inverters, printers, scanners, alarm systems, video intercoms, and HVACs.

Key Features

  • ARM® 32-bit Cortex® -M3 CPU Core
    • 72 MHz maximum frequency,1.25 DMIPS/MHz (Dhrystone 2.1) performance at 0 wait state memory access
    • Single-cycle multiplication and hardware division
  • Memories
    • 64 Kbytes of Flash memory
    • 20 Kbytes of SRAM
  • Clock, reset and supply management
    • 2.0 to 3.6 V application supply and I/Os
    • POR, PDR, and programmable voltage detector (PVD)
    • 4-to-16 MHz crystal oscillator
    • Internal 8 MHz factory-trimmed RC
    • Internal 40 kHz RC
    • PLL for CPU clock
    • 32 kHz oscillator for RTC with calibration
  • Low-power
    • Sleep, Stop and Standby modes
    • VBAT supply for RTC and backup registers
  • 2 x 12-bit(4096), 1 μs A/D converters (up to 16 channels)
    • Conversion range: 0 to 3.6 V
    • Dual-sample and hold capability
    • Temperature sensor
  • DMA
    • 7-channel DMA controller
    • Peripherals supported: timers, ADC, SPIs, I2 Cs and USARTs
  • Up to 80 fast I/O ports
    • 26/37/51/80 I/Os, all mappable on 16 external interrupt vectors and almost all 5 V-tolerant
  • Debug mode
    • Serial wire debug (SWD)
  • 7 timers
    • Three 16-bit timers, each with up to 4 IC/OC/PWM or pulse counter and quadrature (incremental) encoder input
    • 16-bit, motor control PWM timer with dead-time generation and emergency stop
    • 2 watchdog timers (Independent and Window)
    • SysTick timer 24-bit downcounter
  • Up to 9 communication interfaces
    • Up to 2 x I2 C interfaces (SMBus/PMBus)
    • Up to 3 USARTs (ISO 7816 interface, LIN, IrDA capability, modem control)
    • Up to 2 SPIs (18 Mbit/s)
    • CAN interface (2.0B Active)
    • USB 2.0 full-speed interface
  • CRC calculation unit, 96-bit unique ID
  • Packages are ECOPACK®


8. On-board Microu USB interface, you can give the board power supply and USB communication.
9. Size:5.3cm x 2.2cm.

 

link ข้อมูลเกีี่ยวกับ STM32duino

1. ขั้นตอน bootloader เอง https://geektimes.ru/post/277928/

2. เว็บบอร์ด http://www.stm32duino.com/

3. software ที่ต้องใช้ร่วมกับ IDE ของ arduino https://github.com/rogerclarkmelbourne/Arduino_STM32

4. code ตัวอย่าง http://grauonline.de/wordpress/?page_id=1004

Uploading via USB to Serial to STM32F103 boards 

https://www.youtube.com/watch?v=G_RF0a0hrak

 

/*
  Blink  STM32F103C8T6 pin PC13

 */


// the setup function runs once when you press reset or power the board


void setup() {
  // initialize digital pin PC13 as an output.
  pinMode(PC13, OUTPUT);
  //pinMode(PA2, OUTPUT);
  //pinMode(PA0, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(PC13, HIGH);   // turn the LED on (HIGH is the voltage level)
  //digitalWrite(PA2, HIGH);
  //digitalWrite(PA0, HIGH);
  delay(500);              // wait for  500mS
  digitalWrite(PC13, LOW);    // turn the LED off by making the voltage LOW
  //digitalWrite(PA2, LOW);
  //digitalWrite(PA0, LOW);
  delay(500);              // wait for 500mS
}

 

 

//----------- TEST I2C LCD 1602A----------------

// STM32F103C8T6 TEST LCD 1602A(I2C)

//Compatible with the Arduino IDE 1.0

//Library version:1.1

#include  

#include

 

#define LEDPIN   PC13

 

// PCF8574T  set the LCD address to 0x27 for a 16 chars and 2 line display

// #define I2C_LCD_ADDRESSS   0x27   

// PCF8574AT set the LCD address to 0x3F for a 16 chars and 2 line display 

#define I2C_LCD_ADDRESSS   0x3F  

 

LiquidCrystal_I2C lcd(I2C_LCD_ADDRESSS,20,4);  

//----------------------------

//STM32F103C8T6

// SCL  =  PB6

// SDA  =  PB7

//----------------------------

void setup()

{

  pinMode(LEDPIN, OUTPUT);      

 

  lcd.init();                      // initialize the lcd 

  lcd.backlight();

  lcd.home (); // ไปที่ตัวอักษรที่ 0 แถวที่ 1

 

  lcd.setCursor(1,0); // ไปทตัวอักษรที่ 1 แถวที่ 1

  lcd.print("STM32F103C8T6");

  lcd.setCursor(2,1); // ไปที่ตัวอักษรที่ 2 แถวที่ 2

 //  lcd.print("mcucity.com"); 

  lcd.print("ARM Contex-M3");  

}

 

void loop()

{

  digitalWrite(LEDPIN, HIGH);   // turn the LED ON (PC13) (HIGH is the voltage level)

  delay(500);                   // wait for 500mS

  digitalWrite(LEDPIN, LOW);    // turn the LED OFF by making the voltage LOW

  delay(500);                   // wait for 500mS

}

//------------------ END --------------------------------

 

 

 

STM32F103C8T6 ARM board

 

 

STM32F103C8T6 differs from STM32F103C6T6

 

This is a core chip based on for STM32F103C8T6 ARM core board, features are as follows:
1, the board based on the most basic MCU circuit, 8M and 32768 crystal circuit, USB power supply circuit.
2, the core board is divided into two rows leads to all the I / O port.
3, with SWD simulation debug download interface, simple and convenient, debugging speed.
4, the use of the Mirco USB interface, you can do USB communication and power supply, USB interface, compatible with the ordinary Andrews mobile phone charger interface.
6, RTC crystal Epson brand, easy to start, more stable.
7, with double pin, but the pin does not default welding, the user according to their own application scenarios to choose their own welding direction. If welding is required, please tell the owner.
Keil can be used to compile, IAR compiler, can be downloaded through the J-Link or USART1 procedures, the procedures are the owner and debugging procedures, there are problems can consult the owner.

 Chip Description:

1, STM32F103C8T6
Package Type: LQFP;
Number of pins: 48;
Kernel: Cortex-M3;
Operating frequency: 72MHz;
Storage resources: 64K Byte Flash, 20KByte SRAM;
Interface Resources: 2x SPI, 3x USART, 2x I2C, 1x CAN, 37x I / O ports,
Analog-to-digital conversion: 2x ADC (12-bit / 16-channel)
Timers: 3 general timers and 1 advanced timer
Debug Download: Support JTAG / SWD debug interface to download, support for IAP.
2, RT9193: 3.3V regulator chip, the maximum output of 300mA.

 Interface description:

1, SWD interface: support for simulation, download and debug.
2, Mirco USB interface: power supply and USB communication, does not support the download.
3, USART1 interface: USART1 can be used to download the program, or use the USART1 for communication.
4, MCU pin interface: leads all I / O port pins, easy to connect with peripherals.
5, 5V and 3.3V power input and output interface: commonly used in external power supply, or with other modules for common ground treatment
 

 Other Device Description:

1, Power LED (PWR): Power indicator status, can determine whether the power supply is stable.
2, the user LED (PC13): to facilitate the I / O output test or indicate the program running.
3, start jumping choose programming mode: (1, the user flash memory 2, SRAM 3, system memory).
4, reset button: reset chip for the user program.
5, 8M Crystal: The frequency can be set to make the system clocked at 72MHz.
6,32.768KHz Crystal: Available for built-in RTC, or for calibration.

 

วิธีการชำระเงิน

ธนาคารกรุงเทพ จำกัด (มหาชน) สาขาบิ๊กซี รามคำแหง สะสมทรัพย์
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาคลองจั่น ออมทรัพย์
บมจ. ธนาคารกรุงไทย สาขาเดอะมอลล์บางกะปิ ออมทรัพย์
บมจ. ธนาคารกสิกรไทย สาขาโลตัส บางกะปิ ออมทรัพย์
พร้อมเพย์ สาขา- mobile
Scan this!
กิตติ แซ่เอี้ยว
096-xxxxxx-3
Accept All Banks | รับเงินได้จากทุกธนาคาร
  • ค่าธรรมเนียม 3.9% + 11 THB
  • การชำระผ่าน PayPal คุณไม่จำเป็นต้องแจ้งชำระเงิน เนื่องจากระบบจะจัดการให้คุณทันที ที่คุณชำระเงินเสร็จสมบูรณ์

CATEGORY

TRACKCODE

  • ค้นหา
*ใส่ เบอร์มือถือ หรือ email ที่ใช้ในการสั่งซื้อ

CONTACT US

096-898-2243

STATISTICS

หน้าที่เข้าชม5,169,187 ครั้ง
ผู้ชมทั้งหมด1,568,527 ครั้ง
ร้านค้าอัพเดท11 ก.ย. 2568

MEMBER

Join เป็นสมาชิกร้านค้า

ร้านmcucity
ร้านmcucity
/www.mcucity.com/
Join เป็นสมาชิกร้าน
805
สมัครสมาชิกร้านนี้ เพื่อรับสิทธิพิเศษ
ติดตามร้านของเราผ่านแอพได้แล้ววันนี้
  • พิมพ์ “mcucity” ในช่อง Search
  • หรือเข้าจากรายการร้านค้าโปรดของฉัน
พูดคุย-สอบถาม