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
548
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
125
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) &...
6
votes
1
answer
16k
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
1
answer
479
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 ...
1
vote
1
answer
669
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
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
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 ...