▍1. Solar MPPT light:PIC16F1509运用的一个MPPT例子
Solar MPPT light:PIC16F1509运用的一个MPPT例子 这是一个PIC16F1509运用的一个MPPT例子 采用c写的程序,总体可以运用,需要根据自己的需求再修改
Solar MPPT light:PIC16F1509运用的一个MPPT例子 这是一个PIC16F1509运用的一个MPPT例子 采用c写的程序,总体可以运用,需要根据自己的需求再修改
fluent 模拟激光铺粉PBF熔覆过程 udf 含有热源加载及铺粉函数
野火的指南者,GPS是ATGM332D,温度传感器是DHT11。实现定位温度的采集、LCD显示及WIFI传输 /** 温感GPS终端设计.rar ****************************************************************************** * @file main.c * @author fire * @version V1.0 * @date 2013-xx-xx * @brief 对GPS模块传输的数据进行解码,获取定位信息。 ****************************************************************************** * @attention * * 实验平台:秉火 STM32 F103-指南者 开发板 * 论坛 :http://www.firebbs.cn * 淘宝 :https://fire-stm32.taobao.com * ****************************************************************************** */ #include "stm32f10x.h" #include "./usart/bsp_usart.h" #include "./gps/gps_config.h" #include "./lcd/bsp_ili9341_lcd.h" #include "./systick/bsp_SysTick.h" #include "./dht11/bsp_dht11.h" #include "./i2c/bsp_i2c_ee.h" #include "./flash/bsp_spi_flash.h" #include "usart1.h" #include "test.h" #include "bsp_esp8266.h" #include #include extern void nmea_decode_test(void); extern void ESP8266_StaTcpClient_UnvarnishTest2(void); int main(void) { ILI9341_Init (); SysTick_Init(); DHT11_Init (); ILI9341_GramScan ( 6 ); USART_Config(); USARTx_Config(); ESP8266_Init (); GPS_Config(); while(1) { ESP8266_StaTcpClient_UnvarnishTest2(); nmea_decode_test(); } }