Questions tagged [genuino]
The name Genuino grew out of the split between Massimo and Gianluca (aided in part by Microsoft of course, and a trademark wrangle that went wrong). Each side wanted to appear to be more "genuine" than the other. That lead to the "Genuino" name (a genuine Arduino), and a version number war with the IDE.
14
questions
0
votes
1
answer
343
views
What does an Arduino do if the serial connection is closed on the other end?
I have a simple method that simply waits for an input, computes a response, and sends it:
void loop() {
if (Serial.available() > 0){
input = Serial.read();
if (input == 10){
...
1
vote
0
answers
3k
views
How would i add PID control to this servo motor control program. potentiometer
I have installed an AutoPID library (by ryan downing version 1.0.3) to my arduino IDE, but im not sure which parts i will have remove to get the PID to control the servo angle.
Thanks for the reply, ...
1
vote
0
answers
105
views
Trying to get a servo motor to move to certain setpoints when a control potentiometer shows certain values
Here's my Code so far:
void setup() {
Serial.begin(9600);
}
void loop() {
float a;
float angle;
int setpoint;
a = analogRead(A1);
angle = map(a, 0, 1023, 0, 180);
if ( (angle>0) &...
-1
votes
1
answer
87
views
Power external daughter board from Arduino only powered by USB?
Been searching for an answer, but I see lots of talk about it, but not clear answers. Can somebody clarify this? If I power the Arduino only via USB, can I put a small daughter board? and power it ...
6
votes
1
answer
14k
views
What is the difference between Arduino board and Genuino Board?
I've got an Arduino UNO REV3 SMD EDITION.
In the Arduino Editor, I've selected Arduino/Genuino Uno.
In a tutorial, I saw Hardware required : Arduino or Genuino Board
What is the difference between ...
1
vote
0
answers
1k
views
Can't reset Arduino Pro Micro
I'm trying to reset an Arduino Pro Micro with a new code and it is not allowing me to. I'm using an empty sketch to upload to the pro micro but I get different error messages every time. I think the ...
1
vote
1
answer
460
views
CurieBLE receive data without pairing [closed]
I read exist articles about it, but still not understand how to do that.
I have a Genuino 101 and an EEG Headband (neuro interface). Need to get data from neuro device. With external HC-05 bluetooth ...
0
votes
1
answer
3k
views
Navigating menus using buttons on Arduino
I have made a very short version of my code. It has the basic problem I am facing. I explain my code and problem below.
#include <Adafruit_RGBLCDShield.h>
#include <utility/Adafruit_MCP23017....
1
vote
1
answer
639
views
Blinking cursor on Arduino is inconsistent and misses inputs
I am trying to write a part of a program that prints time and allows the user to move a cursor across it. I have the following code, but there are a few issues with it.
#include <...
1
vote
1
answer
4k
views
Moving cursor on LCD and changing highlighted value
I have the code shown below. The goal is to change the value of hours, minutes or seconds based on where the cursor is placed.
#include <Adafruit_RGBLCDShield.h>
#include <utility/...
1
vote
2
answers
8k
views
Convert serial value into hex using in Genuino zero
hello there my code is here.
/* Simple Serial ECHO script : Written by ScottC 03/07/2012 */
/* Use a variable called byteRead to temporarily store
the data coming from the computer */
byte ...
-1
votes
1
answer
221
views
autoCalibrateAccelerometerOffset() Why does my Z values swing from 0 to 1g in static condition?
I tried to implement the autoCalibrateAccelerometerOffset() function, through the code below on Arduino Genuino 101.
In a static test, without any stress or noise, I read the three axis value.
...
1
vote
2
answers
3k
views
How to use multiple SPI slaves in MKR1000 if it doesn't have Slave Select (SS/CS) pin?
I'm using a Genuino MKR1000 and I want to use the SPI interface, which I've seen that there is no Slave Select (SS)/Chip Select(CS) pin usage.
How can I use the SPI interface with multiple slaves ...
2
votes
3
answers
3k
views
Genuino 101 - Can't upload my sketch - Timeout Error
I'm trying to run a sample sketch on my Genuino 101 but the following error shows up. Here is a verbose version.
Starting download script...
Args to shell: [/home/userk/.arduino15/packages/Intel/...