configTime(gmtOffset_sec, daylightOffset_sec, ntpServer); printLocalTime(); WiFi.disconnect(true); WiFi.mode(WIFI_OFF); lcd.clear(); lcd.setCursor(0,1); lcd.print("WiFi discont!"); }
时间: 2023-05-31 20:01:47 浏览: 192
This code sets the time on a device using an NTP server and then prints the current local time on an LCD display. It then disconnects from the WiFi network and turns off the WiFi module. Finally, it clears the LCD display and prints a message indicating that the WiFi has been disconnected.
相关问题
#------------------------------------SpringBoot spring.application.name=SpringBoot-RabbitMQ-Consumer server.port=8091 spring.profiles.active=dev #server.context-path= /zerotrust-demo #??rabbitMQ??? spring.rabbitmq.host=127.0.0.1 spring.rabbitmq.port=5672 spring.rabbitmq.username=guest spring.rabbitmq.password=guest spring.rabbitmq.virtual-host=/ #?????????? spring.rabbitmq.publisher-confirms=true spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.url=jdbc:mysql://127.0.0.1:3306/zerotrust?autoReconnect=true&serverTimezone=GMT%2B8&characterEncoding=utf8&useSSL=false spring.http.converters.preferred-json-mapper=gson spring.datasource.username=root spring.datasource.password=123456 mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl #mybatis.type-aliases-package=com.atguigu.springbootzerotrust.bean # ???????????? server.servlet.encoding.charset=utf-8 server.servlet.encoding.force=true server.servlet.encoding.enabled=true
这是一个Spring Boot应用程序的配置文件,其中包含了多个配置项。其中,应用程序的名称为"SpringBoot-RabbitMQ-Consumer",端口号为8091,激活了"dev"环境的配置文件。RabbitMQ的连接配置包括了主机名、端口号、用户名、密码和虚拟主机等信息。此外,还包括了MySQL数据库的连接配置,包括驱动类名、URL、用户名和密码等信息。同时,还设置了使用Gson作为首选的JSON解析器,以及字符编码的相关配置。
.a.d.p.DruidDataSource - [init,929] - init datasource error, url: jdbc:mysql://192.168.5.128:3306/water?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=CONVERT_TO_NULL&useSSL=true&serverTimezone=GMT%2B8 com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
这条错误消息表明在初始化 Druid 数据源时出现了问题,原因是无法建立与 MySQL 数据库的通信连接。可能的原因包括:
1. 数据库服务器未启动或已关闭。
2. 数据库服务器的 IP 地址或端口号配置错误。
3. 防火墙或网络配置阻止了应用程序与数据库之间的通信。
4. 数据库服务器已达到最大连接数限制,无法再建立新的连接。
5. 数据库用户名或密码不正确。
为了解决这个问题,你可以尝试以下步骤:
1. 确认数据库服务器已启动并且可以正常访问。你可以使用命令行工具(如 ping)或其他网络工具来检查网络连接。
2. 检查应用程序中的数据库配置是否正确。确保 IP 地址、端口号、数据库名称、用户名和密码等参数都正确配置。
3. 检查数据库服务器的防火墙和网络配置,确保应用程序可以访问数据库服务器。
4. 检查数据库服务器的连接数限制,如果需要可以增加最大连接数或者释放空闲连接。
5. 检查数据库用户名和密码是否正确,尝试使用命令行工具或其他客户端工具测试连接。
如果你仍然无法解决问题,请提供更多的上下文信息和完整的错误消息,以便我可以提供更具体的帮助。
阅读全文