首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

STM32 +DS18B20温度传感器+OLED显示屏+有源蜂鸣器报警(下载就能用)

硬件开发 6.51MB 21 需要积分: 1
立即下载

资源介绍:

STM32 +DS18B20温度传感器+OLED显示屏+有源蜂鸣器报警(下载就能用)
/** ****************************************************************************** * @file stm32f10x_tim.c * @author MCD Application Team * @version V3.5.0 * @date 11-March-2011 * @brief This file provides all the TIM firmware functions. ****************************************************************************** * @attention * * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. * *

© COPYRIGHT 2011 STMicroelectronics

****************************************************************************** */ /* Includes ------------------------------------------------------------------*/ #include "stm32f10x_tim.h" #include "stm32f10x_rcc.h" /** @addtogroup STM32F10x_StdPeriph_Driver * @{ */ /** @defgroup TIM * @brief TIM driver modules * @{ */ /** @defgroup TIM_Private_TypesDefinitions * @{ */ /** * @} */ /** @defgroup TIM_Private_Defines * @{ */ /* ---------------------- TIM registers bit mask ------------------------ */ #define SMCR_ETR_Mask ((uint16_t)0x00FF) #define CCMR_Offset ((uint16_t)0x0018) #define CCER_CCE_Set ((uint16_t)0x0001) #define CCER_CCNE_Set ((uint16_t)0x0004) /** * @} */ /** @defgroup TIM_Private_Macros * @{ */ /** * @} */ /** @defgroup TIM_Private_Variables * @{ */ /** * @} */ /** @defgroup TIM_Private_FunctionPrototypes * @{ */ static void TI1_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection, uint16_t TIM_ICFilter); static void TI2_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection, uint16_t TIM_ICFilter); static void TI3_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection, uint16_t TIM_ICFilter); static void TI4_Config(TIM_TypeDef* TIMx, uint16_t TIM_ICPolarity, uint16_t TIM_ICSelection, uint16_t TIM_ICFilter); /** * @} */ /** @defgroup TIM_Private_Macros * @{ */ /** * @} */ /** @defgroup TIM_Private_Variables * @{ */ /** * @} */ /** @defgroup TIM_Private_FunctionPrototypes * @{ */ /** * @} */ /** @defgroup TIM_Private_Functions * @{ */ /** * @brief Deinitializes the TIMx peripheral registers to their default reset values. * @param TIMx: where x can be 1 to 17 to select the TIM peripheral. * @retval None */ void TIM_DeInit(TIM_TypeDef* TIMx) { /* Check the parameters */ assert_param(IS_TIM_ALL_PERIPH(TIMx)); if (TIMx == TIM1) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM1, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM1, DISABLE); } else if (TIMx == TIM2) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM2, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM2, DISABLE); } else if (TIMx == TIM3) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM3, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM3, DISABLE); } else if (TIMx == TIM4) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM4, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM4, DISABLE); } else if (TIMx == TIM5) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM5, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM5, DISABLE); } else if (TIMx == TIM6) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM6, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM6, DISABLE); } else if (TIMx == TIM7) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM7, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM7, DISABLE); } else if (TIMx == TIM8) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM8, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM8, DISABLE); } else if (TIMx == TIM9) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM9, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM9, DISABLE); } else if (TIMx == TIM10) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM10, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM10, DISABLE); } else if (TIMx == TIM11) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM11, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM11, DISABLE); } else if (TIMx == TIM12) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM12, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM12, DISABLE); } else if (TIMx == TIM13) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM13, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM13, DISABLE); } else if (TIMx == TIM14) { RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM14, ENABLE); RCC_APB1PeriphResetCmd(RCC_APB1Periph_TIM14, DISABLE); } else if (TIMx == TIM15) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM15, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM15, DISABLE); } else if (TIMx == TIM16) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM16, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM16, DISABLE); } else { if (TIMx == TIM17) { RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM17, ENABLE); RCC_APB2PeriphResetCmd(RCC_APB2Periph_TIM17, DISABLE); } } } /** * @brief Initializes the TIMx Time Base Unit peripheral according to * the specified parameters in the TIM_TimeBaseInitStruct. * @param TIMx: where x can be 1 to 17 to select the TIM peripheral. * @param TIM_TimeBaseInitStruct: pointer to a TIM_TimeBaseInitTypeDef * structure that contains the configuration information for the * specified TIM peripheral. * @retval None */ void TIM_TimeBaseInit(TIM_TypeDef* TIMx, TIM_TimeBaseInitTypeDef* TIM_TimeBaseInitStruct) { uint16_t tmpcr1 = 0; /* Check the parameters */ assert_param(IS_TIM_ALL_PERIPH(TIMx)); assert_param(IS_TIM_COUNTER_MODE(TIM_TimeBaseInitStruct->TIM_CounterMode)); assert_param(IS_TIM_CKD_DIV(TIM_TimeBaseInitStruct->TIM_ClockDivision)); tmpcr1 = TIMx->CR1; if((TIMx == TIM1) || (TIMx == TIM8)|| (TIMx == TIM2) || (TIMx == TIM3)|| (TIMx == TIM4) || (TIMx == TIM5)) { /* Select the Counter Mode */ tmpcr1 &= (uint16_t)(~((uint16_t)(TIM_CR1_DIR | TIM_CR1_CMS))); tmpcr1 |= (uint32_t)TIM_TimeBaseInitStruct->TIM_CounterMode; } if((TIMx != TIM6) && (TIMx != TIM7)) { /* Set the clock division */ tmpcr1 &= (uint16_t)(~((uint16_t)TIM_CR1_CKD)); tmpcr1 |= (uint32_t)TIM_TimeBaseInitStruct->TIM_ClockDivision; } TIMx->CR1 = tmpcr1; /* Set the Autoreload value */ TIMx->ARR = TIM_TimeBaseInitStruct->TIM_Period ; /* Set the Prescaler value */ TIMx->PSC = TIM_TimeBaseInitStruct->TIM_Prescaler; if ((TIMx == TIM1) || (TIMx == TIM8)|| (TIMx == TIM15)|| (TIMx == TIM16) || (TIMx == TIM17)) { /* Set the Repetition Counter value */ TIMx->RCR = TIM_TimeBaseInitStruct->TIM_RepetitionCounter; } /* Generate an update event to reload the Prescaler and the Repetition counter values immediately */ TIMx->EGR = TIM_PSCReloadMode_Immediate; } /** * @brief Initializes the TIMx Channel1 according to the specified * parameters in the TIM_OCInitStruct. * @param TIMx: where x can be 1 to 17 except 6 and 7 to select the TIM peripheral. * @param TIM_OCInitStru

资源文件列表:

4-1 DS18B20温度模块OLED显示屏.zip 大约有200个文件
  1. 4-1 DS18B20温度模块OLED显示屏/buzzer/
  2. 4-1 DS18B20温度模块OLED显示屏/buzzer/buzzer.c 389B
  3. 4-1 DS18B20温度模块OLED显示屏/buzzer/buzzer.h 72B
  4. 4-1 DS18B20温度模块OLED显示屏/DebugConfig/
  5. 4-1 DS18B20温度模块OLED显示屏/DebugConfig/Target_1_STM32F103C8_1.0.0.dbgconf 6.79KB
  6. 4-1 DS18B20温度模块OLED显示屏/ds18b20/
  7. 4-1 DS18B20温度模块OLED显示屏/ds18b20/ds18b20.c 7.23KB
  8. 4-1 DS18B20温度模块OLED显示屏/ds18b20/ds18b20.h 853B
  9. 4-1 DS18B20温度模块OLED显示屏/Hardware/
  10. 4-1 DS18B20温度模块OLED显示屏/Hardware/Key.c 818B
  11. 4-1 DS18B20温度模块OLED显示屏/Hardware/Key.h 95B
  12. 4-1 DS18B20温度模块OLED显示屏/Hardware/LED.c 1.03KB
  13. 4-1 DS18B20温度模块OLED显示屏/Hardware/LED.h 200B
  14. 4-1 DS18B20温度模块OLED显示屏/Hardware/OLED.c 7.72KB
  15. 4-1 DS18B20温度模块OLED显示屏/Hardware/OLED.h 567B
  16. 4-1 DS18B20温度模块OLED显示屏/Hardware/OLED_Font.h 8.94KB
  17. 4-1 DS18B20温度模块OLED显示屏/keilkill.bat 399B
  18. 4-1 DS18B20温度模块OLED显示屏/Library/
  19. 4-1 DS18B20温度模块OLED显示屏/Library/misc.c 6.88KB
  20. 4-1 DS18B20温度模块OLED显示屏/Library/misc.h 8.77KB
  21. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_adc.c 46.09KB
  22. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_adc.h 21.18KB
  23. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_bkp.c 8.26KB
  24. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_bkp.h 7.38KB
  25. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_can.c 44.05KB
  26. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_can.h 26.91KB
  27. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_cec.c 11.38KB
  28. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_cec.h 6.42KB
  29. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_crc.c 3.27KB
  30. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_crc.h 2.11KB
  31. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_dac.c 18.64KB
  32. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_dac.h 14.88KB
  33. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_dbgmcu.c 5.03KB
  34. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_dbgmcu.h 3.73KB
  35. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_dma.c 28.91KB
  36. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_dma.h 20.27KB
  37. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_exti.c 6.8KB
  38. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_exti.h 6.66KB
  39. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_flash.c 61.08KB
  40. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_flash.h 24.85KB
  41. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_fsmc.c 34.65KB
  42. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_fsmc.h 26.38KB
  43. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_gpio.c 22.68KB
  44. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_gpio.h 19.7KB
  45. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_i2c.c 44.71KB
  46. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_i2c.h 29.33KB
  47. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_iwdg.c 4.8KB
  48. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_iwdg.h 3.74KB
  49. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_pwr.c 8.55KB
  50. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_pwr.h 4.28KB
  51. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_rcc.c 50.07KB
  52. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_rcc.h 29.74KB
  53. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_rtc.c 8.4KB
  54. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_rtc.h 3.77KB
  55. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_sdio.c 28.25KB
  56. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_sdio.h 21.35KB
  57. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_spi.c 29.52KB
  58. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_spi.h 17.31KB
  59. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_tim.c 106.6KB
  60. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_tim.h 51.2KB
  61. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_usart.c 37.41KB
  62. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_usart.h 16.16KB
  63. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_wwdg.c 5.6KB
  64. 4-1 DS18B20温度模块OLED显示屏/Library/stm32f10x_wwdg.h 2.9KB
  65. 4-1 DS18B20温度模块OLED显示屏/Listings/
  66. 4-1 DS18B20温度模块OLED显示屏/Listings/Project.map 123.34KB
  67. 4-1 DS18B20温度模块OLED显示屏/Listings/startup_stm32f10x_md.lst 40.47KB
  68. 4-1 DS18B20温度模块OLED显示屏/Objects/
  69. 4-1 DS18B20温度模块OLED显示屏/Objects/buzzer.crf 337.98KB
  70. 4-1 DS18B20温度模块OLED显示屏/Objects/buzzer.d 1.37KB
  71. 4-1 DS18B20温度模块OLED显示屏/Objects/buzzer.o 368.42KB
  72. 4-1 DS18B20温度模块OLED显示屏/Objects/core_cm3.crf 3.84KB
  73. 4-1 DS18B20温度模块OLED显示屏/Objects/core_cm3.d 104B
  74. 4-1 DS18B20温度模块OLED显示屏/Objects/core_cm3.o 10.85KB
  75. 4-1 DS18B20温度模块OLED显示屏/Objects/delay.crf 338.11KB
  76. 4-1 DS18B20温度模块OLED显示屏/Objects/delay.d 1.34KB
  77. 4-1 DS18B20温度模块OLED显示屏/Objects/delay.o 370.85KB
  78. 4-1 DS18B20温度模块OLED显示屏/Objects/ds18b20.crf 340.88KB
  79. 4-1 DS18B20温度模块OLED显示屏/Objects/ds18b20.d 1.47KB
  80. 4-1 DS18B20温度模块OLED显示屏/Objects/ds18b20.o 384.16KB
  81. 4-1 DS18B20温度模块OLED显示屏/Objects/key.crf 338.47KB
  82. 4-1 DS18B20温度模块OLED显示屏/Objects/key.d 1.31KB
  83. 4-1 DS18B20温度模块OLED显示屏/Objects/key.o 370.75KB
  84. 4-1 DS18B20温度模块OLED显示屏/Objects/led.crf 338.57KB
  85. 4-1 DS18B20温度模块OLED显示屏/Objects/led.d 1.28KB
  86. 4-1 DS18B20温度模块OLED显示屏/Objects/led.o 375.98KB
  87. 4-1 DS18B20温度模块OLED显示屏/Objects/main.crf 340.17KB
  88. 4-1 DS18B20温度模块OLED显示屏/Objects/main.d 1.45KB
  89. 4-1 DS18B20温度模块OLED显示屏/Objects/main.o 373.14KB
  90. 4-1 DS18B20温度模块OLED显示屏/Objects/misc.crf 338.78KB
  91. 4-1 DS18B20温度模块OLED显示屏/Objects/misc.d 1.34KB
  92. 4-1 DS18B20温度模块OLED显示屏/Objects/misc.o 373.86KB
  93. 4-1 DS18B20温度模块OLED显示屏/Objects/oled.crf 341.39KB
  94. 4-1 DS18B20温度模块OLED显示屏/Objects/oled.d 1.35KB
  95. 4-1 DS18B20温度模块OLED显示屏/Objects/oled.o 394.11KB
  96. 4-1 DS18B20温度模块OLED显示屏/Objects/Project.axf 278.89KB
  97. 4-1 DS18B20温度模块OLED显示屏/Objects/Project.build_log.htm 1.65KB
  98. 4-1 DS18B20温度模块OLED显示屏/Objects/Project.htm 51.35KB
  99. 4-1 DS18B20温度模块OLED显示屏/Objects/Project.lnp 1.17KB
  100. 4-1 DS18B20温度模块OLED显示屏/Objects/Project.sct 479B
  101. 4-1 DS18B20温度模块OLED显示屏/Objects/Project_Target 1.dep 55.77KB
  102. 4-1 DS18B20温度模块OLED显示屏/Objects/startup_stm32f10x_md.d 64B
  103. 4-1 DS18B20温度模块OLED显示屏/Objects/startup_stm32f10x_md.o 5.86KB
  104. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_adc.crf 345.78KB
  105. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_adc.d 1.63KB
  106. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_adc.o 419.31KB
  107. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_bkp.crf 339.7KB
  108. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_bkp.d 1.63KB
  109. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_bkp.o 383.37KB
  110. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_can.crf 347.36KB
  111. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_can.d 1.63KB
  112. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_can.o 405.02KB
  113. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_cec.crf 340.24KB
  114. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_cec.d 1.63KB
  115. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_cec.o 385.9KB
  116. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_crc.crf 338.35KB
  117. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_crc.d 1.63KB
  118. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_crc.o 374.84KB
  119. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_dac.crf 340.37KB
  120. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_dac.d 1.63KB
  121. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_dac.o 384KB
  122. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_dbgmcu.crf 338.14KB
  123. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_dbgmcu.d 1.73KB
  124. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_dbgmcu.o 371.05KB
  125. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_dma.crf 341.82KB
  126. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_dma.d 1.63KB
  127. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_dma.o 383.49KB
  128. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_exti.crf 339.33KB
  129. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_exti.d 1.66KB
  130. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_exti.o 377.81KB
  131. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_flash.crf 345.63KB
  132. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_flash.d 1.69KB
  133. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_flash.o 408.55KB
  134. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_fsmc.crf 344.17KB
  135. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_fsmc.d 1.66KB
  136. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_fsmc.o 394.54KB
  137. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_gpio.crf 342.2KB
  138. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_gpio.d 1.66KB
  139. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_gpio.o 393.43KB
  140. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_i2c.crf 344.57KB
  141. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_i2c.d 1.63KB
  142. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_i2c.o 413.62KB
  143. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_it.crf 338.27KB
  144. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_it.d 1.59KB
  145. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_it.o 378.45KB
  146. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_iwdg.crf 338.44KB
  147. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_iwdg.d 1.66KB
  148. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_iwdg.o 374.81KB
  149. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_pwr.crf 339.61KB
  150. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_pwr.d 1.63KB
  151. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_pwr.o 379.38KB
  152. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_rcc.crf 345.69KB
  153. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_rcc.d 1.63KB
  154. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_rcc.o 412.39KB
  155. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_rtc.crf 339.61KB
  156. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_rtc.d 1.63KB
  157. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_rtc.o 385.44KB
  158. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_sdio.crf 342.79KB
  159. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_sdio.d 1.66KB
  160. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_sdio.o 407.34KB
  161. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_spi.crf 342.66KB
  162. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_spi.d 1.63KB
  163. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_spi.o 399.67KB
  164. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_tim.crf 360.35KB
  165. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_tim.d 1.63KB
  166. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_tim.o 495.37KB
  167. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_usart.crf 344.26KB
  168. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_usart.d 1.69KB
  169. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_usart.o 408.61KB
  170. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_wwdg.crf 338.88KB
  171. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_wwdg.d 1.66KB
  172. 4-1 DS18B20温度模块OLED显示屏/Objects/stm32f10x_wwdg.o 377.64KB
  173. 4-1 DS18B20温度模块OLED显示屏/Objects/system_stm32f10x.crf 339.93KB
  174. 4-1 DS18B20温度模块OLED显示屏/Objects/system_stm32f10x.d 1.66KB
  175. 4-1 DS18B20温度模块OLED显示屏/Objects/system_stm32f10x.o 373.23KB
  176. 4-1 DS18B20温度模块OLED显示屏/Project.uvguix.Admin 85.61KB
  177. 4-1 DS18B20温度模块OLED显示屏/Project.uvoptx 32.42KB
  178. 4-1 DS18B20温度模块OLED显示屏/Project.uvprojx 26.64KB
  179. 4-1 DS18B20温度模块OLED显示屏/Start/
  180. 4-1 DS18B20温度模块OLED显示屏/Start/core_cm3.c 16.87KB
  181. 4-1 DS18B20温度模块OLED显示屏/Start/core_cm3.h 83.71KB
  182. 4-1 DS18B20温度模块OLED显示屏/Start/startup_stm32f10x_cl.s 15.4KB
  183. 4-1 DS18B20温度模块OLED显示屏/Start/startup_stm32f10x_hd.s 15.14KB
  184. 4-1 DS18B20温度模块OLED显示屏/Start/startup_stm32f10x_hd_vl.s 15.32KB
  185. 4-1 DS18B20温度模块OLED显示屏/Start/startup_stm32f10x_ld.s 12.09KB
  186. 4-1 DS18B20温度模块OLED显示屏/Start/startup_stm32f10x_ld_vl.s 13.34KB
  187. 4-1 DS18B20温度模块OLED显示屏/Start/startup_stm32f10x_md.s 12.47KB
  188. 4-1 DS18B20温度模块OLED显示屏/Start/startup_stm32f10x_md_vl.s 13.74KB
  189. 4-1 DS18B20温度模块OLED显示屏/Start/startup_stm32f10x_xl.s 15.58KB
  190. 4-1 DS18B20温度模块OLED显示屏/Start/stm32f10x.h 619.08KB
  191. 4-1 DS18B20温度模块OLED显示屏/Start/system_stm32f10x.c 35.7KB
  192. 4-1 DS18B20温度模块OLED显示屏/Start/system_stm32f10x.h 2.04KB
  193. 4-1 DS18B20温度模块OLED显示屏/System/
  194. 4-1 DS18B20温度模块OLED显示屏/System/Delay.c 838B
  195. 4-1 DS18B20温度模块OLED显示屏/System/Delay.h 135B
  196. 4-1 DS18B20温度模块OLED显示屏/User/
  197. 4-1 DS18B20温度模块OLED显示屏/User/main.c 1.04KB
  198. 4-1 DS18B20温度模块OLED显示屏/User/stm32f10x_conf.h 3.18KB
  199. 4-1 DS18B20温度模块OLED显示屏/User/stm32f10x_it.c 4.3KB
  200. 4-1 DS18B20温度模块OLED显示屏/User/stm32f10x_it.h 2.04KB
0评论
提交 加载更多评论
其他资源 C语言:分支语句笔记1
C语言:分支语句笔记1
共享打印机,局域网共享打印,机远程打印,前端静默打印插件,小票打印机
共享打印机,局域网共享打印,机远程打印,前端静默打印插件,小票打印机, 详情请查看 :https://blog.csdn.net/cangege123/article/details/140312922
2024上中小幼教资笔试真题答案(更新中)
内容概要:本资料涵盖了 2024 年上半年小学、幼儿园和中学教资笔试的真题与答案。这些真题及答案于 3.9 开始更新,持续完善中,为考生提供全面且及时的备考资料。 适合人群:正在备考 2024 年上半年小学、幼儿园和中学教资笔试的考生。 能学到什么: ① 了解教资笔试的题型分布和难度水平。 ② 熟悉考试的重点和考点,明确答题思路与方法。 ③ 通过答案解析,掌握正确的解题技巧和知识要点。 阅读建议: ① 考生在使用时,应先独立完成真题,再对照答案进行分析和总结。 ② 对于做错的题目,要重点研究答案解析,找出自己的知识漏洞,进行有针对性的复习。 ③ 结合自身的薄弱环节,有重点地反复练习真题,提高应试能力。
yolo weights
yolo weights
实践操作题9--千峰教育培训网站.zip
实践操作题9--千峰教育培训网站.zip
实践操作题9--千峰教育培训网站.zip 实践操作题9--千峰教育培训网站.zip
qt简单应用win+R运行框
qt简单应用win+R运行框,使用cmake搭建工程
BootLoader西西菜鸟-简易BootLoader实现
简易BootLoader实现
希腊地震数据集-1965 年至 2023 年期间希腊发生的地震
希腊地震数据集-1965 年至 2023 年期间希腊发生的地震 介绍 这是希腊的最新和扩展的地震清单,可追溯到 1965 年,并将每年根据前一年发生的地震事件进行更新。 内容 第一列标题为“DATETIME”,表示地震发生的时间。 然后是“LAT”(纬度)和“LONG”(经度)坐标,它们告诉我们地震发生的地点。最后,地震用“DEPTH”(公里)和“MAGNITUDE”(里氏震级)来描述。 可用于地震研究,包括机器学习 深度学习 传统算法等建模研究