通过wifi转换raspberry pi从esp32接收的数据位

2024-04-19 00:23:13 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试通过无线网络将ESP32上的驻极体MAX9814麦克风的音频信号传输到raspberry pi。我成功地通过WiFi在两者之间传输了音频,但主要的问题是我必须在Raspberry Pi端使用Python来处理Rpi端接收到的位。我不擅长Python,ESP32的代码是C/C++语言。我需要帮助将麦克风传输的位值转换成.wav或其他可播放的音频文件,并使用Python存储该文件。我附上了ESP32的代码,有人能帮我吗,因为我是Python的初学者,不知道该怎么办。Rpi上的代码必须是Python,因为我正试图为一个项目制作GUI。需要帮助。你知道吗

#include <Arduino.h>
#include <WiFi.h>
#include <driver/adc.h>

#define AUDIO_BUFFER_MAX 800

uint8_t audioBuffer[AUDIO_BUFFER_MAX];
uint8_t transmitBuffer[AUDIO_BUFFER_MAX];
uint32_t bufferPointer = 0;

const char* ssid     = "SSID";
const char* password = "PASSWORD";
const char* host     = "SERVER IP ADDRESS";

bool transmitNow = false;

WiFiClient client;

hw_timer_t * timer = NULL; // our timer
portMUX_TYPE timerMux = portMUX_INITIALIZER_UNLOCKED; 

void IRAM_ATTR onTimer() {
portENTER_CRITICAL_ISR(&timerMux); 
// says that we want to run critical 
// code and don't want to be interrupted
int adcVal = adc1_get_voltage(ADC1_CHANNEL_0); // reads the ADC
uint8_t value = map(adcVal, 0 , 4096, 0, 255); // converts the value to 
// 0..255 (8bit)

audioBuffer[bufferPointer] = value; // stores the value
bufferPointer++;

if (bufferPointer == AUDIO_BUFFER_MAX) { // when the buffer is full
bufferPointer = 0;
memcpy(transmitBuffer, audioBuffer, AUDIO_BUFFER_MAX); // copy buffer 
// into a second buffer
transmitNow = true; // sets the value true so we know that we can 
// transmit now
}
portEXIT_CRITICAL_ISR(&timerMux); // says that we have run our critical 
// code
}


void setup() {
Serial.begin(115200);

WiFi.mode(WIFI_STA);
WiFi.begin(ssid, password);

while (WiFi.status() != WL_CONNECTED) {
delay(500);
}

Serial.println("");
Serial.println("WiFi connected");
Serial.println("MY IP address: ");
Serial.println(WiFi.localIP());

adc1_config_width(ADC_WIDTH_12Bit); // configure the analogue to digital 
// converter
adc1_config_channel_atten(ADC1_CHANNEL_0, ADC_ATTEN_0db); // connects the 
// ADC 1 with channel 0 (GPIO 36)
Serial.println("ADC Configured.");
const int port = 4444;
while (!client.connect(host, port)) {
Serial.println("connection failed");
delay(1000);
}

Serial.println("connected to server");

timer = timerBegin(0, 80, true); // 80 Prescaler
timerAttachInterrupt(timer, &onTimer, true); // binds the handling 
// function to our timer 
timerAlarmWrite(timer, 125, true);
timerAlarmEnable(timer);

}

void loop() {
if (transmitNow) { // checks if the buffer is full
transmitNow = false;
client.write((const uint8_t *)audioBuffer, sizeof(audioBuffer)); // 
// sending the buffer to our server

}
}

Tags: thetovaluebufferserialaudiomaxwifi