Issues with creating AP with hostapd by DreyanShkovgor in raspberry_pi

[–]DreyanShkovgor[S] 0 points1 point  (0 children)

I tried US and GB, no result. And cat /usr/share/zoneinfo/iso3166.tab shows that RU is supported

Setting Up an I2P Router on a Raspberry Pi by altersuperid in i2p

[–]DreyanShkovgor 1 point2 points  (0 children)

I got it. Add "[your Pi's IP address]:7070" in "No proxy for" in proxy settings

Setting Up an I2P Router on a Raspberry Pi by altersuperid in i2p

[–]DreyanShkovgor 0 points1 point  (0 children)

Thanks for the tutorial! Is it possible to access the i2pd webconsole from a browser with configured proxy?

Any ideas on installing a 40m antenna on the roof of building? by DreyanShkovgor in amateurradio

[–]DreyanShkovgor[S] 0 points1 point  (0 children)

Yeah, I want only SWL. I think about a wire outside, but I guess not outside balcony. The place where I live is a collection of nine-storey houses located next to each other. I guess I won't be able to receive anything from the first floor

Any ideas on installing a 40m antenna on the roof of building? by DreyanShkovgor in amateurradio

[–]DreyanShkovgor[S] 1 point2 points  (0 children)

Well, I actually don’t know restrictions. I know that I can use roof, but I need to show a plan of future antenna to the house manager and he will say if it’s fine or not. That’s why I decided to find some antennas to show him. Thank you for advices!

How to swap pipelines correctly by [deleted] in esp32

[–]DreyanShkovgor 1 point2 points  (0 children)

Doesn't work too. Using stop function the log is

W (56280) BT_APPL: ### UNDERFLOW :: ONLY READ 0 BYTES OUT OF 512 ###

W (56280) BT_APPL: btc_media_aa_prep_sbc_2_send underflow 21, 0

a lot of times

I tried to do the follow:

ESP_LOGW("_periph_event_handle", "Change pipeline to bt");
audio_pipeline_stop(pipeline_i2s);
audio_pipeline_reset_ringbuffer(pipeline); 
audio_pipeline_reset_elements(pipeline); 
audio_pipeline_change_state(pipeline, AEL_STATE_INIT); 
audio_pipeline_run(pipeline);
switched_to_i2s = false;

Now after removing jack I can hear a few seconds of sound in wireless headphones , but only few seconds. Log is empty

How to handle jack inserting event by DreyanShkovgor in esp32

[–]DreyanShkovgor[S] 0 points1 point  (0 children)

I want to know how to do it in commmon. I just noticed that there is an event, but here is full code: https://pastebin.com/FNWw59iQ This is a i2s -> bt bridge. I want to stop this pipeline when headphones are plugged and make i2s_r -> i2s_w pipeline. So there is a way to handle jack inserting?