Skip to main content

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.

Filter by
Sorted by
Tagged with
0 votes
1 answer
548 views

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){ ...
polortiz4's user avatar
  • 103
1 vote
0 answers
125 views

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) &...
Somerled's user avatar
6 votes
1 answer
16k views

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 ...
Sébastien Temprado's user avatar
1 vote
1 answer
479 views

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 ...
Rachkovan Oleg's user avatar
1 vote
1 answer
669 views

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 <...
Jon Goe's user avatar
  • 89
1 vote
2 answers
8k views

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 ...
Beginner's user avatar
1 vote
2 answers
3k views

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 ...
waas1919's user avatar
  • 153