Questions tagged [board]
13 questions
4
votes
1 answer
HobbyTronics UNO PRO Board Definition does not work in newer IDE versions
I have a HobbyTronics UNO PRO that replaces the UNO's 328P in DIP with an ATMega1284 on an adapter board:
I cannot link to the original page since it does not exist anymore. But, it is available through archive.org.
The original board definition,…
hinton
- 43
- 4
2
votes
2 answers
Looking for a very simple board
I’ve worked with esp8266/esp32 boards in the past and they were great. But now I have a very simple project where both of these are way too powerful.
I want to read one analog input over USB per COM. That’s it. No wifi, no Bluetooth, no 32 bit or…
boop
- 191
- 9
2
votes
1 answer
Where is the documentation for writing an Arduino core?
I'm interested in writing an "Arduino core" (i. e. porting Arduino to a new MCU and new board(s)). I'm having trouble finding much documentation on how to do so. Am I missing something?
This page says "anyone may develop a core for their own…
user31708
- 153
- 5
2
votes
1 answer
problems with Blue Pill (stm32f103c8t6) direct register manipulation
I'm trying to access registers but I keep getting the "was not declared in this scope" error message.
I'm currently using the STM32F1xx boards from http://dan.drown.org/stm32duino/package_STM32duino_index.json
The board package does not seam to…
Beacon of Wierd
- 123
- 7
1
vote
2 answers
Whether my board analog pins shorted? I see same input on all
I am puzzled. I just connected 3.3 V input to the Analog pin A5 of the Arduino UNO. On the script, I am reading all the input pins. Surprizingly, all the pins are giving voltage as that of A5 pin. This made me think whether all of them…
Mainland
- 115
- 4
0
votes
2 answers
How can I identify the abilities of my ESP32 module?
I was attempting to discover how to identify my ESP32 development board.
I was wondering how to discover the abilities it supports.
Here's a snapshot of my board:
This was related to a question I asked about which Arduino board to use.
raddevus
- 442
- 3
- 19
0
votes
0 answers
Can't upload Blinky on CH32V003F4P6 using Arduino IDE
Warn : Transport "sdi" was already selected
Ready for Remote Connections
Error: open failed
*** [upload] Error 1
I have bought a development board (CH32V003F4P6) and I cannot upload a blinky example to the thing. The Chinese company I got it from…
0
votes
1 answer
Different meanings of pid and vid in boards.txt
Let's see the leonardo section in boards.txt:
leonardo.name=Arduino…
Mark
- 393
- 2
- 14
0
votes
1 answer
Where are the programatic definitions for different processors stored?
I need to modify an existing library that relies on being able to detrmine what board / processor the code is being run on. To do this, it uses definitions such as this for an Arduino Mega:
// Arduino Mega
#elif defined(__AVR_ATmega1280__) ||…
Ben Bird
- 101
- 2
0
votes
1 answer
I have a question,an error occured in my code saying TIMSK was not declared in the scope(There are no errors)
#include
void setup() {
SmartInventor.DCMotorUse();
}
void loop() {
// M1, M2, M3
// CW, CCW, STOP
// 0-100
// 0-360
SmartInventor.DCMotor(M1, CW, 10);
delay(2000);
SmartInventor.DCMotor(M1, STOP, 0);
…
user64079
- 1
- 2
0
votes
1 answer
Which board has the highest max current via 3.3v pin?
Is there any arduino board which can deliver 600-800ma via 3.3v pin? Maybe the Arduino due or the nano 33 ble?
Thost91
- 1
- 1
0
votes
1 answer
What type of Arduino is this?
I found a bunch of Arduinos (seemingly), but I can't identify the type.
I first thought of a Micro, but the chip is a MEGA328PAU and the Micro should have a MEGA32U4 instead:
I know it's also not a Nano, because the Nano is a bit longer:
Next, I…
Thomas Weller
- 1,058
- 1
- 8
- 22
-2
votes
1 answer
Some of my statements do not work
I'm trying to include the thing...
#include
#include
#include
#include
BLEServer* pServer = NULL;
void setup() {
// put your setup code here, to run once:
}
void…
The Void
- 1
- 2