This commit is contained in:
2026-02-12 21:00:02 -08:00
parent 77f8236347
commit 8bdbf227ca
1141 changed files with 1010880 additions and 2 deletions

View File

@@ -0,0 +1,65 @@
/**
* @file example-serial-receive.ino
* @author Phil Schatzmann
* @brief Receiving audio via IP and just measuring the thruput
* @version 0.1
* @date 2022-03-09
*
* @copyright Copyright (c) 2022
*/
#include "AudioTools.h"
#include <WiFi.h>
const char *ssid = "ssid";
const char *password = "password";
AudioInfo info(16000, 1, 16);
uint16_t port = 8000;
WiFiServer server(port);
WiFiClient client;
MeasuringStream out;
StreamCopy copier(out, client);
void connectWifi() {
// connect to WIFI
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println();
Serial.println(WiFi. localIP());
// Performance Hack
WiFi.setSleep(false);
}
void setup() {
Serial.begin(115200);
AudioToolsLogger.begin(Serial, AudioToolsLogLevel::Info);
connectWifi();
// start server
server.begin();
// start out
out.begin();
Serial.println("started...");
}
void loop() {
// get a new connection if necessary
if (!client){
client = server.available();
}
// copy data if we are connected
if (client.connected()){
copier.copy();
} else {
// feed the dog
delay(100);
}
}