The arduino tag has no wiki summary.
0
votes
2answers
28 views
Can it get faster or less size Arduino program
My program is
byte key=0;
unsigned int st=millis(),ct=millis(); //st-starttime , ct-currenttime
void setup()
{
delay(5000); //start prog after 5 sec
pinMode(7, INPUT);
pinMode(8, ...
2
votes
0answers
64 views
Can someone review my coding technique?
it's my first try to make a real project and I'm not really sure about how i wrote my code
It's a project about a domotics control system based on arduino, nothing great, it's only for test myself ...
3
votes
1answer
90 views
PID Controller library
I'm trying to implement a PID without floating point operations on a micro controller. I appreciate all feedback I can get.
Header file:
#ifndef BRUSHPID_H
#define BRUSHPID_H
#if defined(ARDUINO) ...
-1
votes
1answer
101 views
arduino timer to print array of serial data at specific intervals, syntax problem [closed]
I was wondering if you guys could help me solve an arduino Coding problem. I've simplified the code to highlight the issue that I'm having. I've created a program to read streaming serial data to an ...
0
votes
0answers
88 views
Feedback on Arduino class for LED circle animations
I'm fairly new to Arduino and C++ in general, coming from a heavy Python background. The code below is functional, but my lack of C++ knowledge is keeping me from spotting any errors in style, idioms ...
0
votes
1answer
85 views
Can you guys help me to improve this Arduino code for animatronic hand? [closed]
I am making a animatronic hand that is powered by two Arduinos connected via XBee radio's. I am very new to coding and this is my first attempt. I was wondering if you guys could help me a little as ...