mongoose培训

16:31
常春藤
声音太小听不到 
常春藤
英文啊 
CityMasm32
有官网链接吗 
Kevin
https://cesanta.com/ 
Toly
https://mongoose.ws/ 
CityMasm32
推荐连接啥云服务器 
Sergey Lyubka
Mongoose can connect to any cloud server, public or private 
CityMasm32
之前用过联aws非常ok,用esp8266 
Sergey Lyubka
Mongoose works well with AWS, and on ESP32 / ESP8266 
CityMasm32
可以用于商业开发,收费吗 
Kevin
商用是收费的,非商业用途免费 
Toly
Mongoose library is distributed under several license terms: GPLv2, Evaluation and Commercial. Read on to understand which licensing option is right for you. https://mongoose.ws/licensing/ 
CityMasm32
怎么收费呢 
荣丰宇
examples/http_server的ipv6支持 
Vi
有录播么?想跟着做,但是跟不上进度 
Toly
BMR - bmrtech.com is official distributor for commercial licenses in China. Please reach to BMR for a commercial license quote. 
CityMasm32
官网有例子的之前 
Sergey Lyubka
We will publish the recording, and a written tutorial 
Toly
Recording will be shared after the webinar. 
CityMasm32
Thanks 
Sergey Lyubka
IPv6 is supported. There is MG_ENABLE_IPV6 build constants. Full list of constants is at https://mongoose.ws/documentation/#build-options 
CityMasm32撤回了一条消息
CityMasm32
请问esp32 wifi配网现在支持smart config吗?之前没有很不方便。 
Sergey Lyubka
That's a ESP32 question.. We have customers that work with, and without ESP32 smart config. 
CityMasm32
Ok,I see,thanks 
16:51
CityMasm32
mongoose确实是很优秀网络协议的开源代码,工具也非常友好,尤其是wesocket server功能,我会持续关注! 
Sergey Lyubka
Thanks! 
Sergey Lyubka
In this example, websocket is used to show live graph data 
Sergey Lyubka
This example shows HTTP/REST, Websocket and MQTT. 
Allan
nice demo 
Toly
Please let us know your questions. We are happy to answer. 
Vi
这个我想测试学习怎么获取资料? 
常春藤
希望有详细的文档例子教程资料,英文听的毕竟不是很顺 
CityMasm32
有https的例子吗 
Toly
https://mongoose.ws/tutorials/  
Kevin
都有的 
常春藤
modbusTCP例子 
Sergey Lyubka
https://mongoose.ws/ 
Sergey Lyubka
Developers -> tutorials 
Sergey Lyubka
Developers -> Documentation 
CityMasm32
Ok 
Vi
跑这个demo,性能稍微低的单片机可以跑么?例如stm32f103 
Toly
https://mongoose.ws/tutorials/http-server/ - HTTP server 
Toly
https://mongoose.ws/tutorials/ -> SSL/TLS
https://mongoose.ws/tutorials/tls/ 
Vi
我观看视频中发现是用的mac系统,请问我使用windows系统操作有什么不一样么? 
天行健
我好像听不懂英文 
Allan
Does demo support 8-16 bit MCU ?  
lhg100
webserver 可以并发多少连接数呢? 
CityMasm32
源码 Github的链接有吗 
云琴箫龙
mg mqtt is blocking api or non blocking api? 
Toly
Source code: https://github.com/cesanta/mongoose 
Vi
听起来这个很nice,周末尝试移植一下到stm32f103c8t6上 
Vi
中文资料多么? 
常春藤
RTOS或裸机有啥需要注意的吗 
Vi
移植过程中有问题可以在github上与你沟通么? 
Toly
For questions you can use -> https://github.com/cesanta/mongoose/discussions 
常春藤
我们希望有中文的视频或中文的例程pdf,以便大家能自己照着做,且最好有个论坛大家一块讨论 
Toly
Forum for Technical Dicussion is available here -> https://github.com/cesanta/mongoose/discussions 
Toly
https://mongoose.ws/consulting/ -> Mongoose Jump-Start & Porting
 
qiang Lin
If Mongoose is used with RTOS, what are the requirements for the services provided by RTOS? 

基于Mongoose在STM32单片机上实现Web UI和MQTT客户端

 

### PyCharm 打开文件显示全的解决方案 当遇到PyCharm打开文件显示全的情况时,可以尝试以下几种方法来解决问题。 #### 方法一:清理缓存并重启IDE 有时IDE内部缓存可能导致文件加载异常。通过清除缓存再启动程序能够有效改善此状况。具体操作路径为`File -> Invalidate Caches / Restart...`,之后按照提示完成相应动作即可[^1]。 #### 方法二:调整编辑器字体设置 如果是因为字体原因造成的内容显示问题,则可以通过修改编辑区内的文字样式来进行修复。进入`Settings/Preferences | Editor | Font`选项卡内更改合适的字号大小以及启用抗锯齿功能等参数配置[^2]。 #### 方法三:检查项目结构配置 对于某些特定场景下的源码视图缺失现象,可能是由于当前工作空间未能正确识别全部模块所引起。此时应该核查Project Structure的Content Roots设定项是否涵盖了整个工程根目录;必要时可手动添加遗漏部分,并保存变更生效[^3]。 ```python # 示例代码用于展示如何获取当前项目的根路径,在实际应用中可根据需求调用该函数辅助排查问题 import os def get_project_root(): current_file = os.path.abspath(__file__) project_dir = os.path.dirname(current_file) while not os.path.exists(os.path.join(project_dir, '.idea')): parent_dir = os.path.dirname(project_dir) if parent_dir == project_dir: break project_dir = parent_dir return project_dir print(f"Current Project Root Directory is {get_project_root()}") ```
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值