No...
There is no response from M5Stack.
I think there is some resource from ESP ADF ( https://github.com/espressif/esp-adf ), but I have no time to test them on Node.
-Engin
No...
There is no response from M5Stack.
I think there is some resource from ESP ADF ( https://github.com/espressif/esp-adf ), but I have no time to test them on Node.
-Engin
BTW, how to verify audio codec (WM8978) and IR transmitter/receiver is working? Thanks a lot!
Hi,
I have tried DHT12 example on Node base, but it seems not working at all (shows 0.01 degree and 0.01% humidity).
Can you please check how to get temperature and humidity from Node base?
Thanks,
-Engin
Hi,
I am trying to build an audio streaming project on M5Stack, it is a really good prototyping platform!
Now I got a WIFI issue: UDP packets will become significantly lost if I connect with bases, but there is no problem if I just uses core.
Here is my testing program (sending null RTP packets to my phone)
===
#include "WiFi.h"
#include "AsyncUDP.h"
const char * ssid = "xxxxx";
const char * password = "xxxxx";
AsyncUDP udp;
void setup()
{
Serial.begin(115200);
WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password);
if (WiFi.waitForConnectResult() != WL_CONNECTED) {
Serial.println("WiFi Failed");
while(1) {
delay(1000);
}
}
}
#define RTP_PAYLOAD_SIZE 160 //=8K/50
/** RTP header constants */
#define RTP_VERSION 0x80
#define RTP_TIMESTAMP_INCREMENT 160 //=8K/50
#define RTP_SSRC 0
//#define RTP_PAYLOADTYPE 0 //=u-law
#define RTP_PAYLOADTYPE 8 //=a-law
#define RTP_MARKER_MASK 0x80
unsigned rtp_seq = 0, rtp_timestamp = 0;
RtpSpk app: https://play.google.com/store/apps/details?id=com.rtpspk
Results:
Bitrate is normal if I use core only:
Bitrate is small if I connect to base:
Can anyone help me for this issue? How to solve UDP packet lost when using bases? Thanks a lot!
BRs,
-Engin