4 questions
0
votes
0
answers
79
views
CircuitPython make Android believe its connected to the internet
I am using Raspberry Pi Pico W in an AP mode and need to allow users to go to 192.168.4.1 to see a website on which they can communicate with the Raspberry.
On an iPhone everything works just fine, ...
0
votes
0
answers
55
views
pointer or reference to incomplete type "altcp_tls_config" is not allowed C/C++
I am trying to set up an HTTPS server with lwip and embedtls on a raspberry pico 2w.
void MyHTTPServer::start() {
tls_config = altcp_tls_create_config_server_privkey_cert(
...
2
votes
0
answers
91
views
How can I make the multiplexing to the 4-digit 7-segment display to work?
The code bellow is meant to read the voltage value from the ADC channels present in GPIO 26 and 27. It changes from ADC channel 0 to ADC channel 1 when the pushbutton in GPIO 15 is pressed.
The ...
0
votes
1
answer
498
views
MQTTClient throws error when trying to connect
I'm devopling an application on a PicoW using Visual Studio (Thonny gives the same results).
It uses umqtt.simple:
from machine import Pin, I2C
from time import sleep
import network
from umqtt.simple ...