-
PDF
canbusboard.pdf
3 PD1 R30 2 GND 357 PC13 U6 3 PC14 B 4 STM32F103C8T6 B PC15 R31 18 PB0 PA0 10 TH0 10K 19 11 PB1 PA1 BLTOUCHSERVO 20 PB2 PA2 12 39 13 PB3 PA3 40 PB4 PA4 14 ADX_CS E0_EN 41 PB5 PA5 15 ADX_SCL 42 16 E0_STEP PB6 PA6 ADX_SDO E0_DIR 43 PB7 PA7 17
-
PDF
Strommessung.pdf
Measurement Interface Size: A3 Date: 2025-09-16 Rev: KiCad E.D.A. 9.0.4 Id: 1/3 F F 1 2 3 4 5 6 7 8 1 2 3 4 5 6 7 8 3 A A J206 1 SW_{DIO}2 C208 10u 5U206 SW_{CLK}3 100n C216 g C 1 4 b 4 3 5 e C209 100n 6 D V_{RTC} C 4 6 8 B 6 } } 7 C S D X C210 100n 1 ~{CS} C U T { MP 6 V 2 _ _ 5 CLK T R R203 C211
in „Prüfung Schaltplan Power Profiler“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
hal_status_recive == HAL_OK) { char hal_string[] = "HAL_OK_Recive\n"; HAL_UART_Transmit(&huart1, (uint8_t*)hal_string, sizeof(hal_string), 100); } if(hal_status_recive == HAL_ERROR) { char hal_string[] = "HAL_ERROR_Recive\n"; HAL_UART_Transmit(&huart1, (uint8_t*)hal_string, sizeof(hal_string), 100); }
in „Überlauf UART“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
eeprom.h
range supposed to be [2.7V to 3.6V], the operation will be done by word */ #define VOLTAGE_RANGE (uint8_t)VOLTAGE_RANGE_3 /* EEPROM start address in Flash */ #define EEPROM_START_ADDRESS ((uint32_t)0x08008000) /* EEPROM emulation start address: from sector2 : after 16KByte of used Flash memory */ /* Pages
in „FLASH speicher Lebensdauer Beeinflussung?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
I2CRoutines.h
------------------------------------------- */ Status I2C_Master_BufferRead(I2C_TypeDef* I2Cx, uint8_t* pBuffer, uint32_t NumByteToRead, I2C_ProgrammingModel Mode, uint8_t SlaveAddress); Status I2C_Master_BufferWrite(I2C_TypeDef* I2Cx, uint8_t* pBuffer, uint32_t NumByteToWrite, I2C_ProgrammingModel Mode, uint8_t SlaveAddress); void I2C_Slave_BufferReadWrite(I2C_TypeDef* I2Cx,I2C_ProgrammingModel Mode); void I2C_LowLevel_Init(I2C_TypeDef* I2Cx); void I2C_DMAConfig(I2C_TypeDef* I2Cx, uint8_t* pBuffer, uint32
in „stm32 Cortex I2C : Master zieht SCL auf Masse“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
I2CRoutines.h
------------------------------------------- */ Status I2C_Master_BufferRead(I2C_TypeDef* I2Cx, uint8_t* pBuffer, uint32_t NumByteToRead, I2C_ProgrammingModel Mode, uint8_t SlaveAddress); Status I2C_Master_BufferWrite(I2C_TypeDef* I2Cx, uint8_t* pBuffer, uint32_t NumByteToWrite, I2C_ProgrammingModel Mode, uint8_t SlaveAddress); void I2C_Slave_BufferReadWrite(I2C_TypeDef* I2Cx,I2C_ProgrammingModel Mode); void I2C_LowLevel_Init(I2C_TypeDef* I2Cx); void I2C_DMAConfig(I2C_TypeDef* I2Cx, uint8_t* pBuffer, uint32
in „Cortex I2C zu kurze Impulsdauer“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f10x_conf.h" #include "main.h" void eraseFlashPage(uint8_t page) { uint32_t addr = FLASH_ADDR + 0x400 * page; FLASH_Unlock(); FLASH_ClearFlag(FLASH_FLAG_PGERR | FLASH_FLAG_WRPRTERR | FLASH_FLAG_EOP); FLASH_ErasePage(addr); FLASH_Lock(); } void writeFlashAddr(uint8_t page, uint16_t offset, uint32_t data) { uint32_t addr = FLASH_ADDR + 0x400 * page + offset; FLASH_Unlock(); FLASH_ClearFlag(FLASH_FLAG_PGERR | FLASH_FLAG_WRPRTERR | FLASH_FLAG_EOP); FLASH_ProgramWord
in „STM32F103 bootloader tool“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
sdcard.c
#define CMD8 (8) /* SEND_IF_COND */ #define CMD9 (9) /* SEND_CSD */ #define CMD10 (10) /* SEND_CID */ #define CMD12 (12) /* STOP_TRANSMISSION */ #define ACMD13 (0x80+13) /* SD_STATUS (SDC) */ #define CMD16 (16) /
in „Problem FatFS + SPI“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <stdio.h> #include "stm32f3xx.h" #include "usb.h" // The current clock frequency uint32_t SystemCoreClock=8000000; // Counts milliseconds volatile uint32_t systick_count=0; // Interrupt handler void SysTick_Handler(void) {
in „An W.S.: Läuft deine USB Implementierung auch auf STM32F303?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include <stdio.h> #include "stm32f3xx.h" #include "usb.h" // The current clock frequency uint32_t SystemCoreClock=8000000; // Counts milliseconds volatile uint32_t systick_count=0; // Interrupt handler void SysTick_Handler(void) {
in „An W.S.: Läuft deine USB Implementierung auch auf STM32F303?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
**** */ /* Includes ------------------------------------------------------------------*/ #include "stm8s.h" /** * @addtogroup GPIO_Toggle * @{ */ /* Private typedef -----------------------------------------------------------*/ /* Private define --------------------------------------------------------
in „STM8 Example Code“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
Schematic_Smart_Greenhouse_Smart_Greenhouse_20200410163337.pdf
1 2 3 4 5 Power Supply 230V AC to 12V / 5V DC +12V RND 205-00035 L7805CV-DG STM 1 2 3 1 3 A 1 2 1 AC/N +V 4 IN OUT +5V A 2 3 AC/L -V GND 3 IRM-15-12 C1 C3 C4 C2 100u 100n 2 100n 100u GND Mikrocontroller ESP 32 - NodeMCU GND 19 38 ESP 3.3V 3.3V GND GND 18 37 EN P23 Temperature Sensor
in „ESP 32 Schaltung“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
gpio_ver2.h
#include "stm8s.h" void init_gpio(void);
in „sdcc source code in mehrere Dateien aufteilen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
stm32f4x7_eth.h
**** */ /* Define to prevent recursive inclusion -------------------------------------*/ #ifndef __STM32F4x7_ETH_H #define __STM32F4x7_ETH_H #ifdef __cplusplus extern "C" { #endif /* Includes ------------------------------------------------------------------*/ #include "eth_conf.h" /** @addtogroup STM32F4x7
in „stm32f4xx lan8720 uip“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F407ZG-board-schematic.pdf
SCKO 2.2R 1N5819S PWR_SEL 2 3.3V_E R 5 5 6 TDO/I2S3_CK 6 5 TDI/I2S3_WS SPI1_SCK 4 SCK 150R D +5V 7 8 TDI/I2S3_WS 8 7 TMS SOFT_SPI1_MOSI R96 2k SPI1_MISO 3 DIO T +5V_TRACE 9 10 1 Close 9 10 RST 10 9 TCK LCD_CS LCD_CS 5 CS 6 7 8 A +5V_OTG_PWR 7 8 VR1(3.3V) +5V_TRACE 11 12 A23 12 11 R47 10k R48 NA U4 R107
in „8Mbit/s Manchester Code codieren und decodieren mit STM32F407“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
STM32F407ZG-board-schematic.pdf
SCKO 2.2R 1N5819S PWR_SEL 2 3.3V_E R 5 5 6 TDO/I2S3_CK 6 5 TDI/I2S3_WS SPI1_SCK 4 SCK 150R D +5V 7 8 TDI/I2S3_WS 8 7 TMS SOFT_SPI1_MOSI R96 2k SPI1_MISO 3 DIO T +5V_TRACE 9 10 1 Close 9 10 RST 10 9 TCK LCD_CS LCD_CS 5 CS 6 7 8 A +5V_OTG_PWR 7 8 VR1(3.3V) +5V_TRACE 11 12 A23 12 11 R47 10k R48 NA U4 R107
in „Problem: SPI Remap am STM32F407ZG“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Nahaufnahme einer Leiterplatte mit integriertem Schaltkreis
STM32F 051C8T6 GH24739 CAN F103
in „Bosch Backofen spinnt (HE579GBS6/01)“ · Haus & Smart Home · · Platinenfotos
-
Bild
Offene Leiterplatte mit Display und Flachbandkabel
KS S 8.2V STM-5 94V-0 S.2 E207844 S.T
in „Defekte Heizungsregelung RC310 Display leuchtet“ · Haus & Smart Home · · Platinenfotos
-
Bild
STM32 Blue Pill Mikrocontroller Board
STM32, 8.000, C7 100nF, GND, B0010, A0 bis B15
in „neuere BluePill (WeAct) I2C1 will nicht“ · Mikrocontroller und Digitale Elektronik · · Platinenfotos
-
Bild
Grüne Leiterplatte mit ARM-Mikrocontroller und Kabeln
ARM STM32F103C8T6 RCT6 64F CHN SQ 247
in „Erbitte Hilfe bei Fehlersuche - STM32F446“ · Mikrocontroller und Digitale Elektronik · · Platinenfotos
-
Bild
Nahaufnahme von zwei integrierten Schaltkreisen auf einer Leiterplatte
ULN2004 STMicroelectronics STM8S003 K3T6C 990JM VG MYS SS2 470
in „Touch-Bedienung aus Dunstabzugshaube“ · Mikrocontroller und Digitale Elektronik · · Platinenfotos
-
Datei
DisplayBusParallel.cpp
/* * DisplayBusParallel.cpp */ #include "DisplayBusParallel.h" #include "stm32f1xx_hal.h" #include "main.h" DisplayBusParallel::DisplayBusParallel() { // TODO Auto-generated constructor stub } void DisplayBusParallel::config() { } void DisplayBusParallel::init() { DisplayBusParallel
in „[Pollin] Grafik Display Anschluss Verständnisfragen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
16; HAL_UART_Init(&huart1); } /** Configure pins as * Analog * Input * Output * EVENT_OUT * EXTI PA8 ------> RCC_MCO_1 */ void MX_GPIO_Init(void) { GPIO_InitTypeDef GPIO_InitStruct; /* GPIO Ports Clock Enable */ __GPIOH_CLK_ENABLE(); __GPIOA_CLK_ENABLE(); /*Configure GPIO pin : PA8 */ GPIO_InitStruct.Pin = GPIO_PIN_8; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; GPIO_InitStruct.Pull = GPIO_NOPULL; GPIO_InitStruct.Speed = GPIO_SPEED_LOW; GPIO_InitStruct.Alternate = GPIO_AF0_MCO; HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
in „STM32F4 CubeMX UART Probleme“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Ausschnitt aus einem Internetforum mit Thread-Titeln
Uhr mit STM8Sxx3 und TM1637 DCF77-Signal - Rufbit Gute 3D CAD-Software für Privatanwender gesucht (1, 2) ZUGFeRD / E-Rechnung
in „Mikrocontroller.net Design-Update August 2026“ · www.mikrocontroller.net · · Screenshots
-
Bild
Schaltplan einer Spannungsversorgung
84V R5 3.6 kΩ R6 6.8 kΩ 1003 R1 1003 R2 5101 R3 103 R4 to STM
in „Batteriekapazitätsanzeige für Roller“ · Analoge Elektronik und Schaltungstechnik · · Schaltpläne
-
PDF
bmpm_v2_1c_schematic.pdf
1 2 3 4 5 6 7 8 POWER REG TARGET FRONTEND PWR_FLAG TPWR 1 +5V +3V3 n +3V3 +3V3 RST 1 P11 0 1 P12 VREG_3V3 1 C U4 2 TDI 1 P13 s 1 IN OUT 5 1 VCCA VCCB 8 xTPWR TDO 1 a 4 2 7 0 1 TCK 1 P14 P BYP 1A 1B 1 R 1 6 P15 i A 3
in „MOSFET Ersatztypen für DMG1024 u. DMG1023 gesucht“ · Analoge Elektronik und Schaltungstechnik ·
-
Datei
main_und_rcc.c
Includes ------------------------------------------------------------------*/ #include "main.h" #include "stm32f10x_conf.h" /* Private typedef -----------------------------------------------------------*/ /* Private define ------------------------------------------------------------*/ /* Private macro -----
in „STM32F1 RTC eine Sekunde generieren“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
#include "stm32f10x.h" #include "math.h" #define PI 3.1415926535897932384626433832795 #define rLDC 250.0 #define ARMLENGTH 500.0 #define ARMLENGTH2 250000.0 uint32_t readings[16]; uint8_t index = 0; uint32_t avg
in „Mikrocontroller Rechenleistung reicht für aktuelles Projekt nicht?“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
t.m
clear [ml,fs1,nbits1]=wavread('c:\interim\ml_fft_8k.wav'); [st,fs2,nbits2]=wavread('c:\interim\st_fir_8k.wav'); load c:\interim\fir_design_stm32f4\pdmsignal.mat; plot(1:length(st),20*log10(abs(fft(st))),'r.-',1:length(ml),20*log10(abs(fft(ml))),'b.-'
in „FIR Filter Optimierung eines PDM Signals auf STM32F407 simuliert mit Matlab“ · Digitale Signalverarbeitung / DSP / Machine Learning ·
-
Datei
main.c
#include <stdio.h> #include "stm32f1xx.h" #include "usb.h" // The current clock frequency uint32_t SystemCoreClock=8000000; // Counts milliseconds volatile uint32_t systick_count=0; // Interrupt handler void SysTick_Handler(void) {
in „Frage an W.S. wegen USB CDC Implementierung STM32F103“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Nahaufnahme eines STM32 Mikrocontrollers auf Leiterplatte
STM32 F103C8T6 9900E AU MYS 605 ST e4 2 R2 D3 D2 U1 C19 D1 R3 C17 C1 C2 RESET C14
in „Probleme mit STM32F103 und SPI1 remapping“ · Mikrocontroller und Digitale Elektronik · · Platinenfotos
-
Datei
graphik.c
<stdlib.h> #include <math.h> /* ------------ Special Include Files --------------- */ #include "tm_stm32f4_ili9341.h" #include "tm_stm32f4_rtc.h" /* ------------ Projekt Include Files --------------- */ #include "config.h" #include "graphik.h" #include "rtc_user.h" /* ------------ Typen Deklarationen
in „Zeigt her eure Kunstwerke (2017-2019)“ · Projekte & Code ·
-
PDF
LinMon_Kurzanleitung_140.pdf
sind als assoziierte Mitglieder angeschlossen (Adam Opel, Alcatel, Atmel, Elmos, Infineon, Philips, STM, Visteon, ZMD, und andere). Hintergrund war, in der Klasse A einen ersten einheitlichen Standard zu schaffen im Bezug auf Systemkonfiguration, Signalübertragung, Software-Programmierung, etc. LIN ermöglicht
in „LIN Kommunikation Master Slave“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
CamperDisplay.pdf
C27 DGND 3 0 C DGND C3 C4 C11 , 110A 3 + FILL25 5 + + 0 4 +3,3V C20 0 V 2 1 R C21 EXTRESET U14 4 6 8 9 1 GND P5 X - OUT25 OUTWASTE 1 CLK SCL 8 SCL 2 3 4 2 1 0 WATERREF 0R0 4 - V 2 VCC DS3231 SDA 7 D D D A MOS2 IN BTS410 2 N R20 100nF 2 LM339 C15 3 6 SDA 10nF 7 p D 7 V V V D K 8 3 VDD N 1 INT VBAT C
in „Akku und Wasserstandsdisplay für Wohnmobile“ · Projekte & Code ·
-
PDF
Controller.pdf
w _ L PIR502PIR602 PIR702 1 PCER201PIC1202oRP g g g g g 2M g W GND GND J4J P2 S S S S S T S S GND 8 7 6 5 4 3 2 1 0 9 8 7 +3.3V PIJ401DAT2 GND PIJ409 C151 CU2 U8P I7P U0P 45P 0P 03P 0P 01P 2P 0P 28P 20 CSC PIJ402CD/DAT3 GND PIJ4010 GND PCER501PIC1502 D S B B T B B B B B 1 1 R R MO II 3 11 20p P0 V
in „RTC Kapazitäten abgleichen, Genauigkeit erhöhen (STM32)“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
MonoGLCD.cpp
/* * MonoGLCD.cpp */ #include "MonoGLCD.h" #include "stm32f1xx_hal.h" // defines ------ #define DISPLAY_ON 0xAF #define DISPLAY_OFF 0xAE #define DISPLAY_START_LINE_SET 0x40 //0x40 to 0x7F 63-Stufen #define PAGE_ADRESS_SET 0xB0 //0xB0 to 0xB8 8-Stufen #define
in „[Pollin] Grafik Display Anschluss Verständnisfragen“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
main.c
Initialize all configured peripherals */ MX_GPIO_Init(); MX_USART1_UART_Init(); /* USER CODE BEGIN 2 */ uint8_t buffer[20]; uint8_t *pointer_recive; uint8_t *pointer_transmit; pointer_recive = buffer; pointer_transmit = buffer; HAL_StatusTypeDef hal_status_recive; HAL_StatusTypeDef hal_status_transmit; // TimeOut
in „Überlauf UART“ · Mikrocontroller und Digitale Elektronik ·
-
Datei
i2croutines.h
------------------------------------------- */ Status I2C_Master_BufferRead(I2C_TypeDef* I2Cx, uint8_t* pBuffer, uint32_t NumByteToRead, I2C_ProgrammingModel Mode, uint8_t SlaveAddress); Status I2C_Master_BufferWrite(I2C_TypeDef* I2Cx, uint8_t* pBuffer, uint32_t NumByteToWrite, I2C_ProgrammingModel Mode, uint8_t SlaveAddress); void I2C_Slave_BufferReadWrite(I2C_TypeDef* I2Cx,I2C_ProgrammingModel Mode); I2C_InitTypeDef I2C_LowLevel_Init(I2C_TypeDef* I2Cx); void I2C_DMAConfig(I2C_TypeDef* I2Cx, uint8_t* pBuffer
in „stm32 Cortex I2C : Master zieht SCL auf Masse“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Schaltplan einer Mikrocontroller-Steuerung mit Optokopplern
X1, L7805ABP, N1, C1, C2, C3, C4, C5, C6, D1, D2, D3, D4, E1, E2, K1 bis K16, L8, MAX3079E, STM32L412, TPIC2810, TLP170AM
in „[S] Gerät um Temperaturfühler an zwei Steuerungen anzuschließen“ · Analoge Elektronik und Schaltungstechnik · · Schaltpläne
-
Bild
M5Stack TAB5 Keyboard Produktübersicht
M5STACK MOUNTING CLIP 70-KEY KEYBOARD M3 HOLE 2x RGB LEDs TAB5 Keyboard 2.54mm 10-Pin I2C INTERFACE STM32F030C8T6 INT SCL GT 3V3 GND SDA GO GND GND
in „Neue Bauteile: Hochgeschwindigkeitsfunk, Löttechnik und die Rückkehr der QWERTZ-Tastatur“ · Mikrocontroller und Digitale Elektronik · · Sonstiges
-
Bild
STM32 LQFP32 Breakout Board
8 9 10 11 12 13 14 15 3 4 5 6 B0 + VCC PA STM32- PB CLK SWD C2 C1 Cqs GND R C5 DIO Jasinski 100n GND PB PA RR A R CR 1 0 7 6 5 4 3 2 1 0
in „STM32: Flashen geht nicht, wenn PLL aktiv (nur HSI oder HSE gehen)“ · Mikrocontroller und Digitale Elektronik · · Platinenfotos
-
PDF
Labornetzteil.pdf
Gerätesteuerung (Preise Okt. 2011) Bauteil Anzahl Bestellnummer Einzelpreis Gesamtpreis Reichelt elektronik 8,2k 2 METALL8,20k 0,08 € 0,16 € 10nF 2 Z5U-510N 0,03€ 0,06€ 2,2k 2 METALL2,20k 0,08 € 0,16 € 3,9k 2 METALL3,90k 0,08 € 0,16 € 100p 2 KERKO100P 0,05€ 0,10€ 47k 16 METALL47,0k 0,05 € 0,77 € 100nF 12 Z5U
in „Labornetzgerät als Projekt“ · Analoge Elektronik und Schaltungstechnik ·
-
Bild
Sammlung von Spiele-Screenshots für ein STM32 Display
REVERSAL by R. Seelig Score 18 THREE COLOR Score 99 Level 3 Todo 8 coded color Press up-key Raetsel: 2648 Menu Bricks Another Breakout Sc: 9 TETRAIS TETRAIS 4 GEWINN by R. Seelig MineSweeper 2025 by R. Seelig ScreenShots STM32F402RCT mit SPI-TFT Display 160x128 und
in „STM32F4 - Spiele“ · Projekte & Code · · Screenshots
-
Datei
main.c
#define wf_GPIOA_CRL (wf_PA0 | (wf_PA1<<4) | (wf_PA2<<8) | (wf_PA3<<12) | (wf_PA4<<16) | (wf_PA5<<20) | (wf_PA6<<24) | ((unsigned)wf_PA7)<<28) #define wf_GPIOA_CRH (wf_PA8 | (wf_PA9<<4) | (wf_PA10<<8) | (wf_PA11<<12) | (wf_PA12<<16) | (wf_PA13<<20) | (wf_PA14<<24) | ((unsigned)wf_PA15)<<28) #define wf_GPIOB_CRL (wf_PB0 | (wf_PB1<<4) | (wf_PB2<<8) | (wf_PB3<<12) | (wf_PB4<<16) | (wf_PB5<<20) | (wf_PB6<<24) | ((unsigned)wf_PB7)<<28) #define wf_GPIOB_CRH (wf_PB8 | (wf_PB9<<4) | (wf_PB10<<8) | (wf_PB11<<12) | (wf_PB12<<16) | (wf_PB13<<20) | (wf_PB14
in „SPI auf STM32F103 - kein Signal“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Nahaufnahme einer Leiterplatte mit STM32F Mikrocontroller
STM32F 030C8TL 99004 0590 MYS 99 701 R205 R206 C222 C211 R211 R210 Z04 Z03 Z04 Z03 C209 R208 C207 C206 202 C202 C201 L1 C203 C204 R202 R203 C204 CP14 CP13 C223 R201 C204 RP PD11 150
in „Marshall Woburn Bluetooth Lautsprecher“ · Mikrocontroller und Digitale Elektronik · · Platinenfotos
-
Bild
Konfigurationsmenü für STM32F1 Blue Pill Board
Board: "Generic STM32F1 series" Port: "COM33" Board Daten neuladen Board-Infos abrufen Debug symbols and core logs: "None" Optimize: "Smallest (-Os default)" Board part number: "BluePill F103C8" C Runtime Library: "Newlib
in „Bluepill STM32F103C8x Arduino Bootloader“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
USBtreeview.txt
0x200 iManufacturer : 0x01 Language 0x0409 : "STMicroelectronics" iProduct : 0x02 Language 0x0409 : "STM32 Joystick" iSerialNumber : 0x03 Language 0x0409 : "8D7552995649" bNumConfigurations : 0x01 ------------------ String Descriptors ----------------- *!* string descriptors are not available because device
in „STM32 USB HID Keyboard“ · Mikrocontroller und Digitale Elektronik ·
-
Bild
Blockschaltbild der Stromversorgung eines STM32F0 Mikrocontrollers
STM32F030x4/x6/x8/xC Electrical characteristics 6.1.6 Power supply scheme Figure 12. Power supply scheme VDD, 2 x VDD, Regulator, VCORE, LSE, RTC, Wake-up logic, Power switch, VDDIO1, GPIOs, OUT, IN, Level
in „STM32f030F4 eigene PCB“ · Mikrocontroller und Digitale Elektronik · · Screenshots
-
Datei
led_an_aus_wechsel.c
#include "stm8s_conf.h" void main(void) { /* Resetten */ GPIO_DeInit(GPIOD); /* Initialisieren */ GPIO_Init(GPIOD, GPIO_PIN_ALL, GPIO_MODE_OUT_PP_LOW_FAST); /* Lässt die LED blinken */ for(;;) { u16 d; for (d = 0
in „Handbuch STM8S Discovery“ · Mikrocontroller und Digitale Elektronik ·
-
PDF
media32.pdf
OUTP I U A 3 0 3 VCC A COCT6 PIUA2VREF OUT PIUA2017 1 22 02 110µ I0 COCT4 CK1212 4 GNDP I U A GND 8 COCT5 TSMD_B BAT PIUA205 2 JS1S1 11TSMD_BGND PICK1201 PICKSSP02IUA3GNDP I U A GND 7 1TSMD_B GND BAT PI12206 0CT8T8 PIJS1*2tpads GND 100n 1 GNDP 5 U A GND 6 GND TS PIUA2012 01µ 0805PIUA301EN GNDPIUA305
in „MP3 Player mit Clickwheel und S65“ · Mikrocontroller und Digitale Elektronik ·