1 Star 1 Fork 4

啊泰/esp8266_codePlayer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ESP8266_BadApple.ino 712 Bytes
一键复制 编辑 原始数据 按行查看 历史
icomgx 提交于 2020-02-28 22:37 . init
#include <ESP8266WiFi.h>
#include <U8g2lib.h>
#include <U8x8lib.h>
const char* Ssid = "iCOMgx";
const char* Password = "sshiki123";
const char* Server = "192.168.31.177";
const int Port = 715;
short Status = 0;
uint8_t apple[1024]={}; //128 * 64 / 8 = 1024
WiFiClient client;
U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);
void setup() {
WiFi.begin(Ssid, Password);
u8g2.begin();
}
void loop() {
if(Status==0 && WiFi.status()==WL_CONNECTED)
{
Status=1;
client.connect(Server, Port);
}
while(client.available()){
client.read(apple,1024);
delay(70);
u8g2.clearBuffer();
u8g2.drawXBMP(0, 0, 128, 64, apple);
u8g2.sendBuffer();
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/unpzz_atai/esp8266_codePlayer.git
git@gitee.com:unpzz_atai/esp8266_codePlayer.git
unpzz_atai
esp8266_codePlayer
esp8266_codePlayer
master

搜索帮助