Search found 721 matches

by MrGodin
August 28th, 2019, 12:55 am
Forum: Everything
Topic: Arduino Micro Controllers
Replies: 16
Views: 9484

Re: Arduino Micro Controllers

Oh and got a couple 16x2 LCD displays to show my photo resistor (light sensor) and temperature sensor data
by MrGodin
August 28th, 2019, 12:49 am
Forum: Everything
Topic: Arduino Micro Controllers
Replies: 16
Views: 9484

Re: Arduino Micro Controllers

so,... I got 3 ATMEGA328p chips and a few 16 mhz crystals, some ceramic capacitors, loaded up the bootloaders and whammo, all ready to have my microchips in my circuits stand alone. getting funner.. errr.. more fun ? haha ;)
by MrGodin
August 7th, 2019, 1:25 am
Forum: Everything
Topic: Arduino Micro Controllers
Replies: 16
Views: 9484

Re: Arduino Micro Controllers

This compiled on the Arduino IDE template<typename T, unsigned int count> class Array { static constexpr unsigned int m_count = count; public: // convenience functions constexpr T& operator[]( unsigned int _index )noexcept{ assert( _index < m_count && "Index out of range" ); return elements[ _index ...
by MrGodin
August 7th, 2019, 1:19 am
Forum: Everything
Topic: Arduino Micro Controllers
Replies: 16
Views: 9484

Re: Arduino Micro Controllers

So i left everything connected to my ATX power supply then went to work. I came back and the fan was running (as expected) and all is well. Once the code is uploaded to the Arduino It'll run so long as it has power. If the power goes out ... the code still resides in the Arduino chip. Cool or what ;...
by MrGodin
August 7th, 2019, 1:04 am
Forum: Everything
Topic: Arduino Micro Controllers
Replies: 16
Views: 9484

Re: Arduino Micro Controllers

Thanks buddy, I'll use this ;)
by MrGodin
August 6th, 2019, 1:15 am
Forum: Everything
Topic: Arduino Micro Controllers
Replies: 16
Views: 9484

Re: Arduino Micro Controllers

The beauty of all this is the Arduino IDE can be coded with c++ up to c++ 11. (for the most part, dynamic memory is limited at best) .. so I can do templates, classes ect .. but things that are dynamic allocated (std::vector) for instance well .. forget it. so I just made my own array structure; tem...
by MrGodin
August 6th, 2019, 1:03 am
Forum: Everything
Topic: Arduino Micro Controllers
Replies: 16
Views: 9484

Re: Arduino Micro Controllers

Ohh and .. connected a USB female plug to the 5 volt of the Power Supply to, you guessed it, power the Arduino and charge my phone
by MrGodin
August 6th, 2019, 12:40 am
Forum: Everything
Topic: Arduino Micro Controllers
Replies: 16
Views: 9484

Re: Arduino Micro Controllers

I've also converted a ATX PC Power supply to a work bench Power Supply. Mounted binding posts to the chassis of the power supply, connected the power leads ( 3.3 volt, 5 volt and 12 volt ) an LED for standby power indicator, another LED for power on (grey wire for when the Power Supply sends a signa...
by MrGodin
August 6th, 2019, 12:37 am
Forum: Everything
Topic: Arduino Micro Controllers
Replies: 16
Views: 9484

Re: Arduino Micro Controllers

Well i have an update. Got a 16x2 LCD display to display temp readings, temp sensor, 4 bank 10 amp, 120 volt relay switches and am turning on and off my fan based on temp readings ( using just 1 relay switch) ... so thats a start
by MrGodin
July 16th, 2019, 3:39 am
Forum: Everything
Topic: Got side tracked...again
Replies: 7
Views: 3318

Re: Got side tracked...again

Take a break dude. I do it all the time from coding and such. I took up archery for a while and it consumed me and my spare time. I'm fortunate to live out in the country on a large piece of land so i can do that but the end result is the same. I come back to code with a fresh mind and new ideas. ex...