Skip to main content
Filter by
Sorted by
Tagged with
3 votes
1 answer
108 views

I'm working on a project that requires phone input via Bluetooth. I connected an HC-05 Bluetooth module to an Arduino Mega, but after powering on, the module is not discoverable by my computer in the ...
KCB Innovator's Club's user avatar
1 vote
1 answer
94 views

I created a programm on python to read serial data from an arduino and show it on a tkinter window. I made a Thread to read the from the arduino and the tkinter programm. My Programm runs perfectly on ...
TBK's user avatar
  • 43
2 votes
0 answers
63 views

I am using VS code, and have 2 Atmega2560 boards talking to each other. I am programming in pure C. Their .c and .h files are both found with in the src folder. I want to include an Uno R3 board as ...
gavin's user avatar
  • 345
0 votes
0 answers
30 views

At first I wrote sketch and it worked. File "info.txt" was created correctly. Then I tried to rewrite the sketch in the style File file = FFat.open(path); file.print(message) etc. But when I ...
Rokky Studio's user avatar
0 votes
1 answer
133 views

I'm fighting with this code to make it work... The aim of it is to control a LoRa module from the hspi pins of the esp32 while the vspi pins will be used by an sd module (not provided in this code). I ...
Jeremy Cools's user avatar
0 votes
0 answers
91 views

I have an ESP32S3 communicating to a proprietary device via BLE. I can connect to two of the services and underlying characteristics on the device and get notifications just fine. However one of the ...
Uberbug's user avatar
  • 137
2 votes
0 answers
142 views

I’m currently having a major problem with the Esp32, and using a mouse pointer in regards to getting the Esp32 to display a cursor upon my VGA or Video Graphics Array screen, I have successfully ...
KronosHedronos2077's user avatar
0 votes
0 answers
92 views

I’m currently working on an Android application that receives data from an Arduino via Bluetooth (HC-06 module). The app uses MPAndroidChart to display a real-time line graph that shows RPM on the X-...
adev's user avatar
  • 1
0 votes
2 answers
107 views

Using a BLE and WiFi based Paxcounter to try and measure passenger flow doesn't seem to be very accurate, as I believe the code in this repository counts all devices with a Mac Address, such as ...
Coiny's user avatar
  • 1
0 votes
0 answers
192 views

I've made an Arduino Uno project and I would like to simulate it directly on my PC since wokwi online simulation takes too long and many times it's not even available. I've figured out how to do it ...
Gabriele Passoni's user avatar
4 votes
0 answers
139 views

When an array is declared with volatile it ends up somewhere different than without: static const char ARRAY[100]; $ nm a.elf | grep ARRAY 00010d00 t ARRAY But: static volatile const char ARRAY[100];...
Caulder's user avatar
  • 459
0 votes
2 answers
82 views

How would I write the code so if I recieve 'hello' it runs a function? import serial ser = serial.Serial(port='/dev/tty.usbmodem11201',baudrate=9600) while True: value= ser.readline() ...
Lukas Sanders's user avatar
0 votes
0 answers
47 views

I encounter this error whenever I try to connect to the InfluxDB Server Version 2.x that is locally hosted in my network. I've been looking for a solution but can't find any. I use an ESP32 without ...
Geierhoppjo's user avatar
1 vote
0 answers
40 views

I am trying to initialize and use the NittoBend's 2-axis Bending sensor with the ESP32 Feather (coded in Arduino IDE). I have the circuit setup correctly (GND to GND, VCC to 3.3V, nDRDY to GPIO 32, ...
user29732056's user avatar
0 votes
1 answer
45 views

I have set a basic Arduino project with HM-10 BLE module for sending some data as String (actually some temperature mesurements) and I see it works if I use an iOS app like BluetoothForArduino. I want ...
Dmitry's user avatar
  • 2,230
0 votes
1 answer
75 views

I am trying to receive data from Arduino with a simple loop, sending data every 100 ms. I am trying to pull the same thing using Tkinter and display it on Canvas. but data is lagging. I tried queue ...
abhishek pandit's user avatar
0 votes
0 answers
39 views

I'm working on an SSI (Self-Sovereign Identity) system with an Arduino Nano 33 IoT. The device receives credential definition chunks successfully but blocks when trying to process them. The device ...
mikerug88's user avatar
  • 145
-1 votes
2 answers
78 views

I have a school project in Internet of Things where I have to create a bluetooth connection on an Arduino UNO. Here is the code in C I use for that : #include <SoftwareSerial.h> SoftwareSerial ...
user avatar
-1 votes
1 answer
25 views

from flask import Flask, send_from_directory from flask_socketio import SocketIO import time import threading import os import serial # Serial Configuration (Modify COM Port if needed) SERIAL_PORT = &...
SeanBing's user avatar
3 votes
2 answers
530 views

I'm trying to access the PSRAM on a Pimoroni pico plus 2 but im not very skilled in C++. I'm using platform io. platformio.ini: [env:rpipico2] platform = https://github.com/maxgerhardt/platform-...
Steve's user avatar
  • 5,171
1 vote
0 answers
42 views

I'm working on a NodeMCU project that uses an nRF24L01, SD card, MPU6050, and BMP280. Individually, both the SD card and nRF24 work fine, but when I plug in the SD card, the nRF24 stops working (doesn'...
Nahidh Naseem's user avatar
2 votes
1 answer
89 views

Resolved I've resolved the issue when added next configuration options to platformio.ini: build_src_filter = +<**/*.cpp> -<main.cpp> test_build_src = yes Original Issue Noob ...
volodymyrkoval's user avatar
0 votes
0 answers
29 views

How do I rename the service and characteristic ID's of the Adafruit Bluefruit LE SPI Friend? I have created them and I can add only one property to each, but I don't know how to rename them. I am ...
LDoug's user avatar
  • 1
0 votes
1 answer
4k views

Whenever I try to compile a valid project (with loop and setup) it just throws a rust error, don't know what to do. The error: thread 'main' panicked at 'assertion failed: `(left != right)` left: `0`...
SuperCarrot's user avatar
1 vote
1 answer
110 views

I'm just wondering if there is a way I can tell the compiler that I want to create a static array inside the .data section of the Arduino's SRAM, where the array's size is calculated using the size of ...
Logan Seeley's user avatar