[ 3 / biz / cgl / ck / diy / fa / ic / jp / lit / sci / vr / vt ] [ index / top / reports ] [ become a patron ] [ status ]
2023-11: Warosu is now out of extended maintenance.

/diy/ - Do It Yourself

Search:


View post   

>> No.1520752 [View]
File: 426 KB, 551x405, 515b4656ce395f8a38000000.png [View same] [iqdb] [saucenao] [google]
1520752

Should I get an arduino to learn programming/electronics or are there better alternatives?

>> No.1313948 [View]
File: 426 KB, 551x405, arduino.png [View same] [iqdb] [saucenao] [google]
1313948

I can't figure out how to post the url for the guide. thinks my post is spam.

also, pic related is the arduino that i have.

>> No.1174823 [View]
File: 426 KB, 551x405, arduino.png [View same] [iqdb] [saucenao] [google]
1174823

Old thread is dead.
ITT:
>projects
>questions
>advice

>> No.1165266 [View]
File: 426 KB, 551x405, arduino.png [View same] [iqdb] [saucenao] [google]
1165266

ITT post anything related to arduino

Anything goes

>projects
>advice
>help

>> No.1081887 [View]
File: 426 KB, 551x405, 515b4656ce395f8a38000000.png [View same] [iqdb] [saucenao] [google]
1081887

I'm in the process of setting up multiple aeroponic grow systems. I want to use an arduino to monitor each reservoir for ppm level, ph level, temperature and control the pump timer. In turn making that data available on a website that I have access to.

I have basic programing skills and a good amount of experience working with circuitry/general electronic based fabricarion.

My quistion is if this is even possible and how difficult would it be to compile the code for each sensor and a single pump controller into the same arduino.

Any help/advice would be greatly appreciated!

>> No.1079103 [View]
File: 426 KB, 551x405, 515b4656ce395f8a38000000.png [View same] [iqdb] [saucenao] [google]
1079103

Hey I've been working with this starter code for an IR receiver and I cant get it to work and I cant find anything to fix it

#include <IRremote.h>
int RECV_PIN=11;
IRrecv irrecv(RECV_PIN);
decode_results results;

void setup() {
Serial.begin(9600);
irrecv.enableIRIn();
}
void loop(){
if(irrecv.decode(&results)){
Serial.println(results.value,HEX);
irrecv.resume(); }
delay(100);
}

Navigation
View posts[+24][+48][+96]