RSS

Tag Archives: LCD display

First Steps with the Arduino-UNO R3 and NANO | Maker, MakerED, Coding | I2C LCD Temp./Humidity displaying

First Steps with the Arduino-UNO R3 and NANO | Maker, MakerED, Coding | I2C LCD Temp./Humidity displaying

.

LCD1602 and LCD2004

.


Displaying Temperature/Humidity on a I2C LCD 

We were already playing around, as seen on my tutorials below, with the Temperature/Humidity sensors DHT11, DHT22 and LCD1602, without I2C possibility. There were a lot of cables to connect, we will try out this time to use a LCD with I2C bus connection as it uses ONLY 4 wires to connect. It’s a perfect project for newbies in coding as they will see the measured values directly on the LCD screen, the success and happy factor is guaranteed!

Related tutorials:

 

Let us have first a look on the wiring (cabling) which is actually very easy, have a look below please:

.

Fritzing-Wiring

====> Click image, please, to enlarge.

The wiring (cabling) will take about +/- 5-10 minutes depending on your own rhythm… Let us have a look on the coding now: we will use exactly the same code (Sketch) as in our first tutorial here, which we will change just a bit to fit for I2C LCD1602 display:

Copy&Paste the code from above tutorial where it is marked “I also made an example where I display the results on a LCD. Here’s the source code of that example:” and paste it into the Arduino IDE. Connect the Arduino NANO with your computer now. Open the Arduino IDE and choose the board “Arduino NANO”, see screenshot below, please:

Arduino-IDE-Board Manager-1

Click image, please, to enlarge.

.

Next step, on the same Arduino IDE select the Processor:

.

Arduino-IDE-Board Manager-OLD-NEW-BOOTLOADER

Click image, please, to enlarge.

.

TIP: when the LED on the Arduino NANO is lightning GREEN it is an original NANO and you must choose “Atmega328P”; if the LED is lightning RED, it is a clone and you must choose “Atmega328P (Old Bootloader)”.

.

NOW it is about time to adapt the code (Sketch) to an I2C-LCD1602 display, let us have a look on the Sketch (the original):

.

OLD Code to change

Click image, please, to enlarge.

.

As we can see in line 10: the library is meant for a normal LCD display, it needs to get changed for a “I2C LCD Library”.

In line 15: the same it shows the wiring pins for a normal LCD display, it needs to get changed for a “I2C LCD” display.

In line19: It is BETTER to add as well the I2C-Address, mostly “0x27” OR “0x3F”.

That is NOT much to change, we will see in the screenshot below the How-To:

.

NEW Code to change

Click image please, to enlarge.

.

By enlarging (click on the image) you will see by comparing where the changes are. I commented in the lines the WHY… Try it out to change it yourselves or just download the Sketch (Code) here below who is working:

Copy&Paste this code into a NEW Sketch on the Arduino IDE and upload now the code to the Arduino NANO (or Arduino UNO) and enjoy it! 😉 Here below a photo of the working sketch:

.

DHT11 on LCD I2C Display

.

And in case of that you have a I2C LCD with 20×4 configuration it works also, check photo below please:

.

I2C LCD2004 and DHT11

.

As you can see the two first lines from 4 possible lines are only used, that is normal as the Sketch (Code) is actually written for a 2 line LCD. BUT we can add some lines of code in the original Sketch to make it working on 4 lines, which is very easy actually, check below please for explication:

.

Printing text on the LCD

Click image, please, to enlarge.

.

As you can see in line 30 in above screenshot of the code ===> “lcd.setCursor(0,0); // Sets the location at which subsequent text written to the LCD will be displayed” the the line is set to “0” which means the first line on the LCD1602. By changing the value to “lcd.setCursor(0,1)” in line 30 and in line 34 to “”lcd.setCursor(0,2)” the text will be displayed as follows, see photo below please:

.

I2C LCD2004 DHT11

.

NOW, as you can see, we have two lines without any text where we could bring in some text. Let us try to find out HOW! We have seen already that “lcd.setCursor(0,0) above. We used in above example the lines 2 and 3 from 4 lines which were displayed as shown in above photo, right?

 

Printing text on the LCD in 4 lines

Click image, please, to enlarge.

.

Check lines 26 and 27 and also lines 37 and 38: I added them, do the same and the text between the “………” you may change it with your OWN text what will result in following, check photo below, please:

.

 

I2C LCD2004 4 lines of text

.

BUT wait, my text looks centralized and yours NOT, HOW?! Check photo below, please which explains:

.

4 Lines centered on I2C LCD

.


Prices and where to order

 

LCD1602 + I2C Modul

LCD1602-I2C

Click image, please, to enlarge.

Arduino NANO

ARDUINO NANO

Click image, please, to enlarge.

 

LCD2004-I2C

Click image, please, to enlarge.

 

 Temperature/Humidity Sensors

DHT11

.

.

Stay tuned for next blog post(s) 😉

.


.

GUST-AVRIL2014-800px-2L’auteur Gust MEES est Formateur andragogique / pédagogique TIC, membre du “Comité Conseil” de “Luxembourg Safer Internet” (LuSI), appelé maintenant BEESECURE, partenaire officiel (consultant) du Ministère de l’éducation au Luxembourg du projet  ”MySecureIT“, partenaire officiel du Ministère du Commerce au Luxembourg du projet ”CASES” (Cyberworld Awareness and Security Enhancement Structure). L’auteur était aussi gagnant d’un concours en électronique en 1979 ( Pays germaniques ) et voyait son projet publié dans le magazine électronique “ELO”.


The author Gust MEES is ICT Course Instructor, ”Member of the Advisory Board” from “Luxembourg Safer Internet” (LuSI), BEESECURE, Official Partner (Consultant) from the Ministry of Education in Luxembourg, project “MySecureIT“, Official Partner from the Ministry of Commerce in Luxembourg, project “CASES” (Cyberworld Awareness and Security Enhancement Structure).

The author was also a winner of an electronics contest (Germanic countries) in 1979 and got his project published in the “Electronics Magazine ELO”.

.

.

Keywords necessary for me to create this blog post: Arduino UNO R3, Arduino NANO, UNO R3 Project, LCD 1602, Sensors, DHT11,  DHT22, Temperature/Humidity Sensor, coding, learning to learn, learning by doing, trouble shooting, hygrometer, I2C, LCD 20×4,

.

.

.

.

 

 

Tags: , , , , , , , , , , , , , , , , , ,

First Steps with the NodeMCU ESP8266 | Maker, MakerED, Coding | Text on I2C-LCD1602 Display written over Web-Page

First Steps with the NodeMCU ESP8266 | Maker, MakerED, Coding | Text on I2C-LCD1602 Display written over Web-Page

.

I2C-LCD WEB-TEXT on NodeMCU ESP8266

.


Text on I2C-LCD1602 Display written over Web-Page

Sometimes it might be useful to write a text which should be displayed on a LCD display without any cabling, that is possible to do over your own Wi-Fi network and a NodeMCU ESP8266 module. And the project uses ONLY 4 wires as the LCD1602 gets addressed over the I2C bus. Let us remember WHAT the I2C bus is in our previous tutorial:

Check out the wiring below please, ONLY 4 wires plus 2 for the power supply connections:

.

.

Let us have a look on the video below who shows how it works:

.

.

SO, knowing now how it works, let us have a look on the Sketch (Code). I changed a bit the code, as I am using an I2C LCD1602 and I added as well some more text displayed on the LCD1602 display. Check below, please, the original code. I will explain WHAT could (should) GET changed later with a screenshot of the changes and/or a download…

The Arduino code and the library for this project can be found at the links below. The library has to be saved in the Arduino libraries folder of the same name:

 

Find below, please, my changed code (Sketch) for downloading:

The download is a text file created with OpenOffice, copy the content and place it into a new Sketch on the Arduino IDE. ALL you have to do now is to change some lines, e.g.:

  • in line 47: Enter your SSID
  • in line 48 Enter your Wi-Fi Network Password

See PIC below, please:

.

CODE-CHANGE

Click image, please, to enlarge.

.

This should work for you now; in case of that you wouldn’t see the display working find here the trouble-shooting:

Mostly it is that your LCD1602 uses a different I2C-Address and/or that the ESP8266 isn’t allowed in your network for security reasons, to make sure check my blog post here, please:

Here below a working Sketch which shows how it is working: for security reasons you won’t see my SSID, nor my real IP-Address! 😉

.

.


.

GUST-AVRIL2014-800px-2L’auteur Gust MEES est Formateur andragogique / pédagogique TIC, membre du “Comité Conseil” de “Luxembourg Safer Internet” (LuSI), appelé maintenant BEESECURE, partenaire officiel (consultant) du Ministère de l’éducation au Luxembourg du projet  ”MySecureIT“, partenaire officiel du Ministère du Commerce au Luxembourg du projet ”CASES” (Cyberworld Awareness and Security Enhancement Structure). L’auteur était aussi gagnant d’un concours en électronique en 1979 ( Pays germaniques ) et voyait son projet publié dans le magazine électronique “ELO”.

 


The author Gust MEES is ICT Course Instructor, ”Member of the Advisory Board” from “Luxembourg Safer Internet” (LuSI), BEESECURE, Official Partner (Consultant) from the Ministry of Education in Luxembourg, project “MySecureIT“, Official Partner from the Ministry of Commerce in Luxembourg, project “CASES” (Cyberworld Awareness and Security Enhancement Structure).

The author was also a winner of an electronics contest (Germanic countries) in 1979 and got his project published in the “Electronics Magazine ELO”.

.

Stay tuned for next blog post(s) 😉..
.

Keywords necessary for me to create this blog post: NodeMCU, ESP8266, Web Server, I2C, LCD1602, Coding, Maker, MakerED, MakerSpaces…

.

.

.

.

 

.

.

.

.

.

.

.

 

Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

First Steps with the Arduino-UNO R3 and NANO | Maker, MakerED, Coding | Scrolling text with I2C-LCD1602

First Steps with the Arduino-UNO R3 and NANO | Maker, MakerED, Coding | Scrolling text with I2C-LCD1602

.

Office Notification-I2C-LCD1602

.


Scrolling text with I2C-LCD1602

I was looking for a simple project for beginners, newbies on Coding and MakerED. A looong time ago since we did a project with ONLY four (4) wires, isn’t it! Well here is one which is very easy to create, a “Scrolling text on a LCD1602 with “I2C-Bus”. In previous blog post we were already using and explaining the “I2C-Bus” with an LCD, so it will be easy to create this one…

As a reminder, the I2C-Bus on an LCD1602:

Let us first have a look on the wiring, which is actually very easy.

.

I2C LCD1602 PINOUT-Arduino NANO

Click image, please, to enlarge.

The full tutorial could be found here, which I invite you to read carefully:

In  the tutorial are mentioned also the download link for the code in the upper side of the website, download it and check it; there are some bugs in 😉 I will explain where to look for changing the code, it’s actually very easy, here we GO!

Here the download link again:

The code looks like this (partial view for WHAT is interesting us…).

.

SCROLLING-TEXT-LCD1602-I2C-ORIGINAL-WITH-BUGS

Click image, please, to enlarge.

.

When we look at line 6, it is just a “comment” and so it will result in an ERROR, it should become uncommented by ” // “. In my case I didn’t get any text displayed, so I had a look at line 18 which is ” lcd.begin (16,2);” and I changed it into ===> “lcd.begin (0x3F,16,2);” which worked!! SO, that’s my recommendations, otherwise the Sketch works fine and you can change the lines 9 and 10 where you bring in your own text; NOT more than 16 characters, please 😉 Well, give it a try and find out yourselves…  Here below a screenshot with the working code…

.

SCROLLING-TEXT-LCD1602-I2C-WORKING

Click image, please, to enlarge.

.

Click the image, please, to enlarge it and find the necessary instructions to make the code work correctly, IF you have the same problem as I had.

.

 

Out of office notification


Office Notification-I2C-LCD1602

Click image, please, to enlarge.

 

 

 

Prices of the used material:

 

 

.

Please check video below to see the Sketch in action, e.g.

.

.

SO, now that your sketch is working, play a bit around while changing the variables, such as:

  • delays
  • text
  • etc.

Have fun and stay tuned for next blog posts 😉


.

GUST-AVRIL2014-800px-2L’auteur Gust MEES est Formateur andragogique / pédagogique TIC, membre du “Comité Conseil” de “Luxembourg Safer Internet” (LuSI), appelé maintenant BEESECURE, partenaire officiel (consultant) du Ministère de l’éducation au Luxembourg du projet  ”MySecureIT“, partenaire officiel du Ministère du Commerce au Luxembourg du projet ”CASES” (Cyberworld Awareness and Security Enhancement Structure). L’auteur était aussi gagnant d’un concours en électronique en 1979 ( Pays germaniques ) et voyait son projet publié dans le magazine électronique “ELO”.


The author Gust MEES is ICT Course Instructor, ”Member of the Advisory Board” from “Luxembourg Safer Internet” (LuSI), BEESECURE, Official Partner (Consultant) from the Ministry of Education in Luxembourg, project “MySecureIT“, Official Partner from the Ministry of Commerce in Luxembourg, project “CASES” (Cyberworld Awareness and Security Enhancement Structure).

The author was also a winner of an electronics contest (Germanic countries) in 1979 and got his project published in the “Electronics Magazine ELO”.

 

Keywords necessary for me to create this blog post: Arduino UNO R3, Arduino NANO, LCD 1602, I2C Bus, coding, learning to learn, learning by doing, trouble shooting, I2C scan, LCD160/I2C, Scrolling Text,

.

.

.

 

Tags: , , , , , , , , , , , , , , , , , , , , , , , , ,

First Steps with the Arduino-UNO R3 | Maker, MakerED, Coding | Super Starter Kit UNO R3 Project

First Steps with the Arduino-UNO R3 | Maker, MakerED, Coding | Super Starter Kit UNO R3 Project

.

Elegoo-Super Starter-Kit for Arduino UNO R3

.


Super Starter Kit UNO R3 Project From Elegoo

Elegoo Super Starter-Kit Project Arduino UNO R3In one of my previous blog posts I used Arduino-UNO Starter Kit, which I ordered at Conrad (English version) and I wasn’t really impressed by the manual, it didn’t satisfy to my expectations and needs. SO, I was looking around to find some distributors for a BETTER version… At “Amazon US” I found Elegoo UNO Project Super Starter Kit with Tutorial for Arduino. First of all, the kit is delivered in a plastic box and its price is also attractive, $34.99.

The manual with the code, libraries and tutorials is on a DVD. So, I was looking first on the DVD and reading the Manual in PDF format to see the quality of the tutorials and the tutorials in PDF are very well documented. Once knowing WHAT is possible to do I made my choice for the “LCD-Tutorial“…

Below is the “Wiring diagram“, the How-To to connect the wires to make it work.

.

LCD-Wiring Diagram

.

As yo can see, it isn’t that much to do. Once the wiring ready, it is time to upload the code to the IDE and make it run to the success 😉 With the delivered code you will see the message “Hello World” on the LCD-Display.

.

Hello World-LCD-Display

.

Here below the code where the message “Hello World” is in.

.

Hello World-LCD-Display-Code

 

SO, why not playing around a bit to understand the code and changing the text message in <===> lcd.print(“Hello, World!”); <===> into something different, something more personal!? That’s WHAT I did, here my code change:


lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print(“Gust MEES – LCD”);


which shows up as, see image below please.

.

Arduino-Change of code for LCD-Display

.

The LCD-Display shows now my name as well (photo was taken when the counter was at 62) as my age, yes I am 62 years old (actually young, LOL); meaning that WHEN I can do this you for sure are able to do it! SO, WHAT are you waiting for to START learning about coding!!?

Reflecting for ideas:

SO, WHY not assembling everything into a box and use it as your personal “Door Name Display“, play around with some text and find out…

Ready, START, GO… Have fun by LEARNing-By-Doing 😉

.

You may have a look on my other blog posts about Arduino below:

.


.

GUST-AVRIL2014-800px-2L’auteur Gust MEES est Formateur andragogique / pédagogique TIC, membre du “Comité Conseil” de “Luxembourg Safer Internet” (LuSI), appelé maintenant BEESECURE, partenaire officiel (consultant) du Ministère de l’éducation au Luxembourg du projet  ”MySecureIT“, partenaire officiel du Ministère du Commerce au Luxembourg du projet ”CASES” (Cyberworld Awareness and Security Enhancement Structure). L’auteur était aussi gagnant d’un concours en électronique en 1979 ( Pays germaniques ) et voyait son projet publié dans le magazine électronique “ELO”.


The author Gust MEES is ICT Course Instructor, ”Member of the Advisory Board” from “Luxembourg Safer Internet” (LuSI), BEESECURE, Official Partner (Consultant) from the Ministry of Education in Luxembourg, project “MySecureIT“, Official Partner from the Ministry of Commerce in Luxembourg, project “CASES” (Cyberworld Awareness and Security Enhancement Structure).

The author was also a winner of an electronics contest (Germanic countries) in 1979 and got his project published in the “Electronics Magazine ELO”.

.

Stay tuned for next blog post(s) 😉..
.

Keywords necessary for me to create this blog post: Arduino Starterkit, Arduino UNO R3, Elegoo, quality kits, LCD, LCD Display, coding, Maker, MakerED, MakerSpaces, Electronics, Amazon US,

.

.

 

.

.

.

 

 

 

 

 

Tags: , , , , , , , , , , , , , , , , , , , , , , , , ,

Maker-First Steps in Electronics-Building a Power Supply

Maker-First Steps in Electronics-Building a Power Supply

.

dsc_0625

.


Building a Variable Power Supply With Few Components

Variable Power Supply-work in progress

Click the image please to enlarge

In previous tutorial Maker-First Steps in Electronics, the basics WE got a bit the PracTICE of soldering and WE learned ALSO about schematics, resistors, LEDs, diodes and OHM’s Law. WE used ALSO a 9 Volt battery as a power supply for our projects; BUT batteries are expensive (3,99 €) and when playing around a lot on experimenting WE would use a lot of them. This will certainly be the case as on the beginning while tinkering around, my personal experience, as one is curios and tries out everything. Which is good by the way, but better is to build a variable power supply for few money and for small projects like WE are working on.

SO, let us have a look on the schematic about WHAT WE will create next. WE will discover some NEW components, such as a voltage regulator integrated circuit (IC), a variable resistor (potentiometer), capacitors, electrolytic capacitors… which WE will learn more about as well in this tutorial.

WE had already the experience with a stripboard, which we will continue (on the beginning) to build our variable power supply. It will be a very easy one with ONLY 10 components to solder on the stripboard. The tension will be adjustable  by a potentiometer (variable resistor) from 0-24 Volts and a maximum current of 1 Ampere. WE will ALSO provide it with a switch so that we can ALSO use it as a Volt-Meter to measure the tensions on our strip-board projects…

WE will ALSO learn to drill and to rasp as WE will enclose our project into an enclosure; well mechanics are part as well when one tinkers with electronics 😉

WE will solder measure points on the strip-board as well. so we can learn about measuring and to understand what is going on when AC gets through a rectifier bridge and becomes DC…

.


Schematics

Electronic Schematics – Need-To-Know

BEST explication I have found and WHICH I agree!!! Electronic schematics are like recipes for electronics. They tell you what ingredients to use and how to mix the ingredients. But instead of using text to explain the recipe, a drawing is used.

Learn more:

Please check the schematics of OUR project below:

.

variable-power-supply-schematics-test-screenshot

.

The above schema was created with:

.

Fuse

fuse-schematics

Rectifier bridge

bridge-rectifier-schematics

Voltage Regulator

voltage-regulators

Transformer

transformer-schematics

Capacitors and Polarized Capacitors (Electrolytic Capacitors)

 

capacitors-schematics

Variable Resistor (Potentiometer)

potentiometer

potentiometer-schematics

Resistors

resistor-schematics 

 

 

 

.

Learn more:

.

.


The Components and the Parts List

Please check below the photo to get familiarized with the parts.

.

variable-power-supply-parts-list-photo

.

In above image WE see parts which we used already in first tutorial <===> Electronics Starter Kit for Makers <===> such as resistors, diodes  and the stripbord. NEW components are (please check the links below to learn more):

This time WE will ALSO need to use some tools and mechanical parts; well electronics without mechanics doesn’t exist 😉 Will get explained in a new tutorial…

.

List of online Electronics shops (mostly for Europe, but some are delivering ALSO global):

.


Detailed parts list, supplier and prices

Please find below the detailed parts list as well as the supplier and the prices.

.

Item and quantity

Supplier and order number

Price

1 x Transformer 230V/1A CONRAD: 710422 15,99€
1 x Bridge rectifier B40/C7000-4000 CONRAD: 501980  4,49€

2 x Electrolyte capacitor 1000uF/63V

CONRAD: 1472875 à 1,49€

 2,98€
1 x Diode 1N4007 CONRAD: 1262766 0,22€
1 x Resistor 100 Ω CONRAD: 405132  0,10€

1 x Potentiometer 4K7 Ω

CONRAD: 440778

1,99€

1 x Knob for potentiometer CONRAD: 715840 1,09€
1 x LM317T CONRAD: 176001  0,34€

1 x Capacitor MKS2-1uF/63V

CONRAD: 455318

1,49€
1 x Panel-Meter  CONRAD: 101950 35,99€
1 Heatsink for LM317T CONRAD: 183870  1,03€
1 x Mounting-Kit TO220 CONRAD: 155140 0,72€

1 x Stripboard

CONRAD: 529531

 2,19€
2 x PCB Connector 2 pins CONRAD: 1192188 à 0,28€ 0,56€ 
Total:  69,18€

.


Check out this video tutorial to understand

A GREAT video tutorial to watch for understanding about the used “Voltage Regulator Chip LM317T“:

.

.


First tests without the transformer

I propose to make the first test(s) without the transformer; by using a 9 Volts battery! This to make sure that there isn’t any mistake on the wiring as a short-circuit could cause damage!! Check photo below please:

.

Test with 9 Volts battery

Click image please to enlarge

 

Using a copy of the schematics and a pen to erase the done connections already; this allows to keep an eye on how far one is…

.

marking connections made

.


Safety FIRST as WE are working with 230 Volts!!

549px-iso_7010_w012-svgI will propose two different projects, one for NEWBIES and one for advanced users! NEWBIES will NOT solder the transformer on the stripboard, BUT will connect it to the stripboard by <===> Safety FIRST rules <===> and advanced users could solder it on the stripboard by respecting these Safety rules! WE will use ALSO heat-shrinking tubes to insulate ALL the components where 230 Volts is connected to assume that nobody could touch them to avoid electrical shock by touching!!!

Learn more about heat-shrinking tubes:

 

I am NOT the guy WHO follows any rules, BUT THESE ONE I follow myself ALSO as it is mandatory!! YOUR life and/or the life of OTHERS could be in danger if NOT followed!!! SO, take YOUR responsibility, please 😉 Well, enough blabla, let us have a look WHY:

Learn more:

Check photos below please:

.

Heat-shrinking tubes on transformer before shrinking

Click image please to enlarge.

.

Heat-shrinking tubes on transformer after shrinking

Click image please to enlarge

.

Let us protect and ALSO our workbench with a plastic underground (plastic is insulating…), check below please:

.

Protecting and insulating workbench

Click above image please to enlarge it.

.

Two different projects, one for NEWBIES and one for advanced users: thus meaning; NEWBIES will NOT solder the transformer on the stripboard, BUT fixing and connecting it apart! Advanced users will be able to solder the transformer on the stripboard by taking care of safety rules, check above image please for connected transformer on the stripboard and image below please for transformer connected with wires to the stripboard .

.

Transformer connected outside the stripboard

.


Building UP from the beginning a system for wiring

WE have two different possibilities for the wiring and connection of the components on the stripboard:

  1. Using really wiring with colored insulated wires
  2. Using ONLY the copper strips on the stripboard to make the connections
  3. OR using both as I did in above; one red colored wire was used to make a connection…

.

WHEN WE use the wiring with colored insulated wires, we need to have a system in it, let us define UP from the beginning which colors mean WHAT! I propose this:

  • Red for the “PLUS” of DC Power Supply
  • Blue for the “Minus” (Ground) of DC Power Supply
  • Green for the connections of AC
  • White or blank silver wire for bridges on the stripboard: connections from one component to the other…

.


List of free electronics circuit simulators

.

ltspice-tutorial-simulator

Click image please to access the video

Nowadays WE have the chance to profit from FREE Simulator software to examine the How-To circuits work, please find below some useful links:

 

Please check below for useful articles on Software:

.

Learn more:


Next steps to come

Well, first build the above and finish it! Later WE will bring in ALSO some test points (soldering them on the stripboard) for measuring the voltage on different points and we will solder as well on the stripboard some more components to protect out project against short circuits, an electronic fuse with ONLY five (5) components. WE, once finished the above mentioned will then go for mechanical works as the whole will get fit into an enclosure. There will be then a bit drilling, rasping and…

.

Some electronics projects made +/- 25-30 years ago, check video below please 😉 I stopped tinkering around for the peace of our conjugal life, well wife was right! I had to much hobbies; NOW I am retired and I have too much time, SO I started again…

.

.

Keywords necessary for me to create this blog post: Learning about alternative current (AC), Direct current (DC), Zenerdiodes, Voltage regulators, 7809, LM317T, Panelmeter, Digital Voltmeter, testing, measuring, test points, potentiometer, variable resistors, capacitors, electrolytic capacitors, LCD Display…

.


.

GUST-AVRIL2014-800px-2L’auteur Gust MEES est Formateur andragogique / pédagogique TIC, membre du “Comité Conseil” de “Luxembourg Safer Internet” (LuSI), appelé maintenant BEESECURE, partenaire officiel (consultant) du Ministère de l’éducation au Luxembourg du projet  ”MySecureIT“, partenaire officiel du Ministère du Commerce au Luxembourg du projet ”CASES” (Cyberworld Awareness and Security Enhancement Structure). L’auteur était aussi gagnant d’un concours en électronique en 1979 ( Pays germaniques ) et voyait son projet publié dans le magazine électronique “ELO”.


The author Gust MEES is ICT Course Instructor, ”Member of the Advisory Board” from “Luxembourg Safer Internet” (LuSI), BEESECURE, Official Partner (Consultant) from the Ministry of Education in Luxembourg, project “MySecureIT“, Official Partner from the Ministry of Commerce in Luxembourg, project “CASES” (Cyberworld Awareness and Security Enhancement Structure).

The author was also a winner of an electronics contest (Germanic countries) in 1979 and got his project published in the “Electronics Magazine ELO”).

.

Stay tuned for next blog post(s) 😉

.

.
.

.

.

 

 

Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,