-
150. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
redcharly Jun 14, 2020 2:10 AM (in response to jwatson)Piezoelectric materials
-
151. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
COMPACTJun 14, 2020 9:39 PM (in response to redcharly)
We foresaw your answer in our Crystal Ball.
-
152. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
Tucanae Aug 10, 2020 3:37 PM (in response to jwatson)Color sensors
-
153. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
Tucanae Aug 11, 2020 10:32 AM (in response to jwatson)Digital Encoders for angle measuring
-
154. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
dlpdesign Aug 16, 2020 8:42 PM (in response to jwatson)RFID technology , market and applications
-
155. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
aharmon666 Oct 31, 2020 7:42 PM (in response to jwatson)Identifying and applying coax connectors - there seem to be a million speciality types now
-
156. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
hexheart Nov 15, 2020 10:27 AM (in response to jwatson)I would like to see some modules on RC electronics like electronic speed controllers, battery eliminator circuits, radio transmitters, using IoT communication to remotely control machines, programming microcontrollers to manage motor drives, pulse width modulation, etc.
-
157. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
netdatasi Jan 8, 2021 6:50 AM (in response to jwatson)Sensor interfacing
-
158. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
akki497 Jan 29, 2021 11:57 AM (in response to jwatson)Technicians and technologists may receive some training in how to build electronic systems, but engineers often don't get much training and the rest of the maker community gets zero.
Sensors and Connectors are great but seem like they're for people who already have some sort of idea what they're doing. I've never touched a board, let alone know what any of the parts are.
-
159. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
redcharly Jan 29, 2021 2:40 PM (in response to akki497)1 of 1 people found this helpfulIn my opinion you could start with simple things and, if you have fun you can move on to more and more complicated things. You could use an Arduino Nano and few sensors or, if you've never programmed, you could start with some NE555, CD40XX, LED, etc. to spend some pleasant hours. Explore this site and you will find hundreds of interesting, curious, funny projects!
-
160. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
nelson64 Jan 30, 2021 11:37 AM (in response to jwatson)Hi I have started with arduino a few months ago my knowledge off electronics is limited can you advice me on wear to start building more knowledge up and witch course to start .Thanks Nelson
-
161. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
phoenixcommJan 30, 2021 2:05 PM (in response to nelson64)
1 of 1 people found this helpfulnelson64 Hi, the First thing I would do is to scrap the Arduino's pitiful IDE and use Eclipse, I use just plain C with my Arduinos, but I still use the Arduino libraries for the most part. you can do this two ways:
first is to write using Arduino FrameWork ie. setup() and loop() (which leaves a lot to be desired
The second is to write using C (you run into trouble with scoping rules with C++ ).
I normally keep one function on one page of code which is included + its header file.
ie..
count.h
int counter; // thsi could now be a Global but you will have to initialize it before you use it
file count_P.h
MaxCount = 8;
MinCount = 1;
#define UP 1
#define DOWN 0
file counter.c
#include counter_P.h
int counter.c ( int updown ) {
switch (updown) {
case UP: { if( counter = MaxCount ) conter = MinCount;
else counter++;
case DOWN:
~~ Cris
-
162. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
redcharly Jan 30, 2021 3:01 PM (in response to nelson64)2 of 2 people found this helpfulTry to go to the web page: https://www.element14.com/community/community/arduino/arduino-tutorials, you will find tutorials, simple projects with diagrams, codes, and videos of the final results. Maybe start by reproducing some simple project you like and then modify it, add features, etc. In this period, when we spend most of our time locked up at home for the pandemic, a hobby like electronics is what it takes to keep our brains active!
Element14 is an inexhaustible source of interesting and curious projects. Have a good time nelson64
Carlo
-
163. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
harivney Jan 30, 2021 4:06 PM (in response to jwatson)1 of 1 people found this helpfulIm new. Read book about computer gates, buses, RAM, flip-flops, etc. Also searched high and low on internet to find out how/what causes a bit to get turned on (energized/5v). Hope I am not violating any forum rules by asking.
How do "1" bits get energized/volts? Assume a program has defined a constant named ONE that has an initial value of 1 (0000 0001). Does the right most bit get energized (5V) when the program gets loaded into memory? What component of the computer causes that to happen? Same question for how do bits in op codes and operands get energized?
-
164. Re: What 'Essentials' Electronics Topic would you like to Learn More About?
phoenixcommJan 31, 2021 2:26 PM (in response to harivney)
1 of 1 people found this helpfulOk where to start? what do you what to set to (TRUE or 1)
- for a GATE just tie it to +5v via a 10k pull-up resistor.
- for an Arduino GPIO line.
- define you IO pin. use a name its easyer. ie.. #define MyBit0 23 which is the same as int MyBit0 23;
- pinMode(23, OUTPUT); // sets the digital pin 23 as output
- digitalWrite(23, HIGH); // sets the digital pin 23 on
- the same question for how do bits in opcodes and operands get energized? why above your knowledge level, Let the compiler do it as this is a risk architure. And a mess.
~~Cris
Enjoy DIY Learning Modules designed for engineers:
- Short, self-paced learning anywhere, anytime
- Technologies, Applications & Trivia
See Current Essentials Offerings
What Do You Want to Learn Next? Share Your Suggestion by Replying below!