21st Century Learning and Teaching
586.2K views | +4 today
Follow
21st Century Learning and Teaching
Related articles to 21st Century Learning and Teaching as also tools...
Curated by Gust MEES
Your new post is loading...
Your new post is loading...

Popular Tags

Current selected tags: '2015', 'Maker'. Clear
Scooped by Gust MEES
Scoop.it!

control Electrical Devices From user web browser using esp8266 Nodemcu | Internet Of Things

control Electrical Devices From user web browser using esp8266 Nodemcu | Internet Of Things | 21st Century Learning and Teaching | Scoop.it

Hi, in this tutorial we will see how to control electrical devices like fan, light, etc., to turn on and off using esp8266 from a web browser. if you are bored with a dedicated device controller like an app or an remote which will be available for only one particular device but using this method all the device which support web browsing will be act as a  controller for us.

Make sure all the devices are connected to the same router, this example doesn't include a port forwarding function which will not allow us to control the device from outside the home network. 

Components that you need for completing this project are very simple, you need to have an esp8266 wifi module and a relay, make sure you buying a 5v relay which very easy to use with esp chips doesn't require external supply too. we can make use of the Vin pin of the nodemcu or if you are using a generic chip, you need to supply an external 5v to the relay.

 

Learn more / En savoir plus / Mehr erfahren:

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=ARDUINO

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=I2C

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=LCD

 

http://blog.mklec.com/how-to-use-iici2c-serial-interface-module-for-1602-lcd-display/

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=NodeMCU

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=ESP8266+WiFi+Module

 

Gust MEES's insight:

Hi, in this tutorial we will see how to control electrical devices like fan, light, etc., to turn on and off using esp8266 from a web browser. if you are bored with a dedicated device controller like an app or an remote which will be available for only one particular device but using this method all the device which support web browsing will be act as a  controller for us.

Make sure all the devices are connected to the same router, this example doesn't include a port forwarding function which will not allow us to control the device from outside the home network. 

Components that you need for completing this project are very simple, you need to have an esp8266 wifi module and a relay, make sure you buying a 5v relay which very easy to use with esp chips doesn't require external supply too. we can make use of the Vin pin of the nodemcu or if you are using a generic chip, you need to supply an external 5v to the relay.

 

Learn more / En savoir plus / Mehr erfahren:

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=ARDUINO

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=I2C

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=LCD

 

http://blog.mklec.com/how-to-use-iici2c-serial-interface-module-for-1602-lcd-display/

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=NodeMCU

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=ESP8266+WiFi+Module

 

No comment yet.
Scooped by Gust MEES
Scoop.it!

How E-Ink Works: The Technology Behind E-Paper Displays - YouTube | #Displays #Maker #MakerED #MakerSpaces 

E-Ink. It powers everything from the YotaPhone 2 to the Amazon Kindle. It's simultaneously one of the most understated and futuristic display technologies around. And it's being put to use in devices and venues you've never even thought of. But what exactly is E-Ink, and how does it work?

That's a question we had for the folks at E-Ink Corporation, the brains behind the world's leading electrophoretic ink technology, and they were more than happy to answer it. They invited us to tour their Innovation Center and Headquarters facility in Massachusetts to get a firsthand look at the technology behind E-Paper Displays, as well as some historical context and a few sneak previews of where E-Ink is headed next. Join us for this quick tour, and then visit E-Ink yourself for more: http://www.eink.com/index.html

 

Learn more / En savoir plus / Mehr erfahren:

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=ARDUINO

 

Gust MEES's insight:

E-Ink. It powers everything from the YotaPhone 2 to the Amazon Kindle. It's simultaneously one of the most understated and futuristic display technologies around. And it's being put to use in devices and venues you've never even thought of. But what exactly is E-Ink, and how does it work?

That's a question we had for the folks at E-Ink Corporation, the brains behind the world's leading electrophoretic ink technology, and they were more than happy to answer it. They invited us to tour their Innovation Center and Headquarters facility in Massachusetts to get a firsthand look at the technology behind E-Paper Displays, as well as some historical context and a few sneak previews of where E-Ink is headed next. Join us for this quick tour, and then visit E-Ink yourself for more: http://www.eink.com/index.html

 

Learn more / En savoir plus / Mehr erfahren: 

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=ARDUINO

 

No comment yet.
Scooped by Gust MEES
Scoop.it!

Good to know when using different Arduino boards | Arduino - Wire | #Coding #Maker #MakerED #MakerSpaces #LEARNingByDoing

Wire Library

This library allows you to communicate with I2C / TWI devices. On the Arduino boards with the R3 layout (1.0 pinout), the SDA (data line) and SCL (clock line) are on the pin headers close to the AREF pin. The Arduino Due has two I2C / TWI interfaces SDA1 and SCL1 are near to the AREF pin and the additional one is on pins 20 and 21.

As a reference the table below shows where TWI pins are located on various Arduino boards.

 

BoardI2C / TWI pinsUno, EthernetA4 (SDA), A5 (SCL)Mega256020 (SDA), 21 (SCL)Leonardo2 (SDA), 3 (SCL)Due20 (SDA), 21 (SCL), SDA1SCL1

 

As of Arduino 1.0, the library inherits from the Stream functions, making it consistent with other read/write libraries. Because of this, send() and receive() have been replaced with read() and write().

 

Gust MEES's insight:

This library allows you to communicate with I2C / TWI devices. On the Arduino boards with the R3 layout (1.0 pinout), the SDA (data line) and SCL (clock line) are on the pin headers close to the AREF pin. The Arduino Due has two I2C / TWI interfaces SDA1 and SCL1 are near to the AREF pin and the additional one is on pins 20 and 21.

As a reference the table below shows where TWI pins are located on various Arduino boards.

 

BoardI2C / TWI pinsUno, EthernetA4 (SDA), A5 (SCL)Mega256020 (SDA), 21 (SCL)Leonardo2 (SDA), 3 (SCL)Due20 (SDA), 21 (SCL), SDA1SCL1

 

As of Arduino 1.0, the library inherits from the Stream functions, making it consistent with other read/write libraries. Because of this, send() and receive() have been replaced with read() and write().

 

No comment yet.
Rescooped by Gust MEES from iPads, MakerEd and More in Education
Scoop.it!

100 Engineering Projects For Kids - The Homeschool Scientist | MakerED

100 Engineering Projects For Kids - The Homeschool Scientist | MakerED | 21st Century Learning and Teaching | Scoop.it
Here's 100 Engineering Projects For Kids to get that them excited about construction, design, electronics, and more.


Learn more:


http://www.scoop.it/t/21st-century-learning-and-teaching/?tag=makerspace


https://gustmees.wordpress.com/2014/08/20/maker-space-a-new-trend-in-education-and-a-big-responsibility/



Via John Evans
Gust MEES's insight:
Here's 100 Engineering Projects For Kids to get that them excited about construction, design, electronics, and more.


Learn more:


http://www.scoop.it/t/21st-century-learning-and-teaching/?tag=makerspace


https://gustmees.wordpress.com/2014/08/20/maker-space-a-new-trend-in-education-and-a-big-responsibility/


Liz Curtis's curator insight, September 22, 2015 4:57 AM

Love anything to do with engineering education - especially when it involves bringing together the core subjects. Click for more engineering and programming projects

nihal abitiu's curator insight, September 22, 2015 6:20 AM

100 Engineering Projects for Kids

J. Mark Schwanz's curator insight, January 17, 2016 9:33 PM

This is great and just in time to help parents help their kiddos with science fair type projects.

Scooped by Gust MEES
Scoop.it!

Tickle: Program Arduino, Drones, Robots, and Smart Homes from iPad | MakerED | MakerSpaces | Coding

Tickle: Program Arduino, Drones, Robots, and Smart Homes from iPad | MakerED | MakerSpaces | Coding | 21st Century Learning and Teaching | Scoop.it
Programming re-imagined for the connected world. Learn to program Arduino, drones, connected toys, and smart home devices. Tickle is easy to learn, fun to use, yet 1000x more powerful.

.

Learn more:

.

https://gustmees.wordpress.com/2014/08/24/coding-a-new-trend-in-education-and-a-big-responsibility/

.

https://gustmees.wordpress.com/2014/08/20/maker-space-a-new-trend-in-education-and-a-big-responsibility/

Gust MEES's insight:
Programming re-imagined for the connected world. Learn to program Arduino, drones, connected toys, and smart home devices. Tickle is easy to learn, fun to use, yet 1000x more powerful.

.

Learn more:

.

https://gustmees.wordpress.com/2014/08/24/coding-a-new-trend-in-education-and-a-big-responsibility/

.

https://gustmees.wordpress.com/2014/08/20/maker-space-a-new-trend-in-education-and-a-big-responsibility/


Frank de Nijs's curator insight, September 18, 2015 3:47 AM

Tickle, programmeer app voor toepassing (Arduino, drones, robots en 'smart home devices') op de iPad

Rosemary Tyrrell, Ed.D.'s curator insight, September 27, 2015 5:38 PM

Similar to the Berkeley programming language with click together elements. 

ManufacturingStories's curator insight, October 18, 2015 6:21 PM

#Drones #Arduino #Robots #Robotics #Scratch #CODE #Programming

Scooped by Gust MEES
Scoop.it!

123D Circuits | The easiest way to learn electronics and Arduino programming | MakerEd | Coding

123D Circuits | The easiest way to learn electronics and Arduino programming | MakerEd | Coding | 21st Century Learning and Teaching | Scoop.it
The easiest way to learn electronics and Arduino programming.
.
Learn more:
.
.
Gust MEES's insight:

The easiest way to learn electronics and Arduino programming.


Learn more:


No comment yet.
Scooped by Gust MEES
Scoop.it!

Maker Faire Hannover | MakerED | MakerSpaces

Maker Faire Hannover | MakerED | MakerSpaces | 21st Century Learning and Teaching | Scoop.it
Das Kreativ-Festival 2015: Am 6. und 7. Juni im HCC in Hannover.


Alle Maker und ihre Projekte sind unter Meet the Makers aufgelistet, sowohl alphabetisch als auch nach Themen sortiert. Einen schönen Überblick, wer dieses Jahr alles dabei ist, gibt es auch nebenan beim Make-Magazin.


Learn more:



http://www.scoop.it/t/21st-century-learning-and-teaching/?tag=Digital+4+EDUcation


https://gustmees.wordpress.com/2014/08/24/coding-a-new-trend-in-education-and-a-big-responsibility/


https://gustmees.wordpress.com/2014/08/20/maker-space-a-new-trend-in-education-and-a-big-responsibility/



Gust MEES's insight:
Das Kreativ-Festival 2015: Am 6. und 7. Juni im HCC in Hannover.


Alle Maker und ihre Projekte sind unter Meet the Makers aufgelistet, sowohl alphabetisch als auch nach Themen sortiert. Einen schönen Überblick, wer dieses Jahr alles dabei ist, gibt es auch nebenan beim Make-Magazin.


Learn more:



http://www.scoop.it/t/21st-century-learning-and-teaching/?tag=Digital+4+EDUcation


https://gustmees.wordpress.com/2014/08/24/coding-a-new-trend-in-education-and-a-big-responsibility/


https://gustmees.wordpress.com/2014/08/20/maker-space-a-new-trend-in-education-and-a-big-responsibility/


No comment yet.
Scooped by Gust MEES
Scoop.it!

Control any Electronics with a TV Remote | Arduino IR Tutorial | #Coding #Maker #MakerED #MakerSpaces

Control any Electronics with a TV Remote | Arduino IR Tutorial | #Coding #Maker #MakerED #MakerSpaces | 21st Century Learning and Teaching | Scoop.it

In this Arduino IR Tutorial we will learn how to control electronic devices using a TV remote and an Arduino. We will make few examples starting from controlling a simple LED, then controlling a DC Fan speed, to controlling high voltage home appliances. You can watch the following video or read the written tutorial below.

 

Learn more / En savoir plus / Mehr erfahren:

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=ARDUINO

 

Gust MEES's insight:

In this Arduino IR Tutorial we will learn how to control electronic devices using a TV remote and an Arduino. We will make few examples starting from controlling a simple LED, then controlling a DC Fan speed, to controlling high voltage home appliances. You can watch the following video or read the written tutorial below.

 

Learn more / En savoir plus / Mehr erfahren:

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=ARDUINO

 

ukdvla's curator insight, January 30, 2021 4:04 PM

 

https://www.euglobalservices.com/
Renew Or Update Your Licence - Licence Driving Services
Renew or update your driving licence online, rapid support and SMS notifications. Mobile friendly and lost licence protection, fully legal to drive once approved. Explore Our Services. Check Application Pricing. Multiple Payment Options.
‎Renew Licence · ‎Lost Licence · ‎Change Your Address
https://www.euglobalservices.com/about-us/buy-uk-driving-licence/

 

Scooped by Gust MEES
Scoop.it!

How I2C Communication Works and How To Use It with Arduino - YouTube | #Coding #Maker #MakerED #MakerSpaces #LEARNingByDoing 

https://howtomechatronics.com/tutoria... ► Find more details, circuit schematics and source codes here.

In this tutorial we will learn how the I2C communication protocol works and also we will make a practical example of it with the Arduino Board and a sensor which uses this protocol. You can watch the following video or read the written tutorial below.

Visit HowToMechatronics.com for more Tutorials, Tips, Projects and How It Works videos:
https://howtomechatronics.com/

 

Learn more / En savoir plus / Mehr erfahren:

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=ARDUINO

 

Gust MEES's insight:

https://howtomechatronics.com/tutoria... ► Find more details, circuit schematics and source codes here.

In this tutorial we will learn how the I2C communication protocol works and also we will make a practical example of it with the Arduino Board and a sensor which uses this protocol. You can watch the following video or read the written tutorial below.

Visit HowToMechatronics.com for more Tutorials, Tips, Projects and How It Works videos:
https://howtomechatronics.com/

 

Learn more / En savoir plus / Mehr erfahren:

 

https://www.scoop.it/t/21st-century-learning-and-teaching/?&tag=ARDUINO

 

No comment yet.
Scooped by Gust MEES
Scoop.it!

BEE CREATIVE 2015 | MakerED | MakerSpaces in Luxembourg (Europe) | Creativity | Curiosity | PracTICE

Den 20. November 2015 war et endlech esou weit! Déi offiziell Aweiung vun de 6 éischte Makerspacen zu Lëtzebuerg! An hei ass de Video mat de flottste Momenter.

-Become creative in a world without boundaries-

Gust MEES's insight:

Den 20. November 2015 war et endlech esou weit! Déi offiziell Aweiung vun de 6 éischte Makerspacen zu Lëtzebuerg! An hei ass de Video mat de flottste Momenter.

-Become creative in a world without boundaries-


delmy's curator insight, December 17, 2015 10:31 AM

#SCEUNED15 Te imaginas a estas edades .... ¿ qué  podrían alcanzar  cuando ya sean adultos?

Scooped by Gust MEES
Scoop.it!

BlocksCAD: Mit Scratch kinderleicht 3D-Modelle programmieren | Coding | MakerED | MakerSpaces

BlocksCAD: Mit Scratch kinderleicht 3D-Modelle programmieren | Coding | MakerED | MakerSpaces | 21st Century Learning and Teaching | Scoop.it
Wie weit lässt sich der anspruchsvolle Prozess der Konstruktion von 3D-Modellen vereinfachen? Der Webdienst BlocksCAD kombiniert dazu visuelle Programmierung mit konstruktiver Festkörpergeometrie.


.

Learn more:

.

https://gustmees.wordpress.com/2014/08/24/coding-a-new-trend-in-education-and-a-big-responsibility/

.

https://gustmees.wordpress.com/2014/08/20/maker-space-a-new-trend-in-education-and-a-big-responsibility/


Gust MEES's insight:
Wie weit lässt sich der anspruchsvolle Prozess der Konstruktion von 3D-Modellen vereinfachen? Der Webdienst BlocksCAD kombiniert dazu visuelle Programmierung mit konstruktiver Festkörpergeometrie.


.

Learn more:

.

https://gustmees.wordpress.com/2014/08/24/coding-a-new-trend-in-education-and-a-big-responsibility/

.

https://gustmees.wordpress.com/2014/08/20/maker-space-a-new-trend-in-education-and-a-big-responsibility/


No comment yet.
Scooped by Gust MEES
Scoop.it!

KNIWWELFEST | the Makersday - am 20.9.201 von 10 - 18 Uhr, Musée Tudor

KNIWWELFEST | the Makersday - am 20.9.201 von 10 - 18 Uhr, Musée Tudor | 21st Century Learning and Teaching | Scoop.it

KNIWWELFEST

the Makersday - am 20.9.2015

von 10 - 18 Uhr, Musée Tudor

.

Learn more:

.

https://gustmees.wordpress.com/2014/08/20/maker-space-a-new-trend-in-education-and-a-big-responsibility/

Gust MEES's insight:

KNIWWELFEST

the Makersday - am 20.9.2015

von 10 - 18 Uhr, Musée Tudor

No comment yet.
Scooped by Gust MEES
Scoop.it!

25 unglaubliche Raspberry-Pi-Projekte | MakerED | Makerspaces | Coding

25 unglaubliche Raspberry-Pi-Projekte | MakerED | Makerspaces | Coding | 21st Century Learning and Teaching | Scoop.it
Kaum ein anderes Gerät dürfte die Bastlerszene in den letzten Jahren so begeistert haben, wie der scheckkartengroße Minirechner. Wir zeigen euch 25 spannende Raspberry-Projekte, die auch euren Bastlertrieb wecken könnten.




Mehr erfahren / Learn more:


https://gustmees.wordpress.com/2014/08/20/maker-space-a-new-trend-in-education-and-a-big-responsibility/


https://gustmees.wordpress.com/2014/08/24/coding-a-new-trend-in-education-and-a-big-responsibility/


Gust MEES's insight:
Kaum ein anderes Gerät dürfte die Bastlerszene in den letzten Jahren so begeistert haben, wie der scheckkartengroße Minirechner. Wir zeigen euch 25 spannende Raspberry-Projekte, die auch euren Bastlertrieb wecken könnten.


Mehr erfahren / Learn more:


https://gustmees.wordpress.com/2014/08/20/maker-space-a-new-trend-in-education-and-a-big-responsibility/


https://gustmees.wordpress.com/2014/08/24/coding-a-new-trend-in-education-and-a-big-responsibility/


No comment yet.