ningbolaoyao
Results
1
issues of
ningbolaoyao
举个例子,如何在v6代码中如何提取json中的city字符串,然后直接让墨水屏显示呢, 墨水屏显示代码如下 void displaytext(){ display.init(115200); display.setRotation(0); u8g2Fonts.begin(display); display.firstPage(); uint8_t SCREEN_WIDTH=400; do { u8g2Fonts.setBackgroundColor(0xff); u8g2Fonts.setForegroundColor(0x00); u8g2Fonts.setFont(u8g2_mfyuanhei_16_gb2312); u8g2Fonts.drawUTF8(250, 150, “测试”); } while (display.nextPage()); display.hibernate(); } 以下是我的获取json的代码 HTTPClient http; WiFiClient wifiClient; if (WiFi.status()...