21st Century Learning and Teaching
586.3K views | +7 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', 'Coding'. 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.
Scooped by Gust MEES
Scoop.it!

INFOGRAPHIC: Coding at school — How do EU countries compare?

INFOGRAPHIC: Coding at school — How do EU countries compare? | 21st Century Learning and Teaching | Scoop.it

Learn more / En savoir plus / Mehr erfahren:


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


Gust MEES's insight:

Learn more / En savoir plus / Mehr erfahren:


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


Rafael Valverde's curator insight, October 18, 2015 9:26 AM

#SCEUNED15

RESENTICE's curator insight, October 19, 2015 3:00 AM

Une étude comparative de l'apprentissage du code à l'école dans les différents pays d'Europe

Olivier Baggiano's curator insight, October 21, 2015 6:02 AM
From my own experience, you never know when your knowledge of coding will be useful, but you know it will one day. The earlier we familiarise ourselves with it, the better (no need to go over board though).
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!

Rowhammer, jetzt auch mit JavaScript: Sicherheitsleck durch Software-Angriff auf DRAM-Chips | Coding | Responsibility

Rowhammer, jetzt auch mit JavaScript: Sicherheitsleck durch Software-Angriff auf DRAM-Chips | Coding | Responsibility | 21st Century Learning and Teaching | Scoop.it

Beim Rowhammer-Angriff klöppelt der Angreifer so lange auf einem Speicherbereich rum, bis benachbarte Bits flippen. So kann man Systeme lahmlegen und sich sogar Admin-Rechte verschaffen. Unglaublicherweise klappt das auch mit JavaScript über das Internet.


Im März schlug die Veröffentlichung einer Reihe von Google-Forscher große Wellen: Auf DRAM-Chips lassen sich mit Gewalt Bits flippen und Angreifer können so den Rechner des Opfers abstürzen lassen oder gar Admin-Rechte erlangen. Jetzt haben Forscher der Technischen Universität Graz und der Firma Technicolor es geschafft,den sogenannten Rowhammer-Angriff auf JavaScript zu übertragen.


Damit kann man den Speicher aus der Ferne malträtieren, wenn das Opfer eine präparierte Webseite besucht. Die Gefahr eines gezielten Angriffs im Alltag ist zwar nach wie vor begrenzt, wenn es dem Angreifer aber nur darum geht, Daten in den Systemen zu verfälschen oder diese zum Absturz zu bringen, so ist dem Tür und Tor geöffnet und zwar nicht etwa nur für x86, sondern prinzipiell auch für ARM und andere Architekturen.


Mehr erfahren / Learn more:


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


Gust MEES's insight:

Beim Rowhammer-Angriff klöppelt der Angreifer so lange auf einem Speicherbereich rum, bis benachbarte Bits flippen. So kann man Systeme lahmlegen und sich sogar Admin-Rechte verschaffen. Unglaublicherweise klappt das auch mit JavaScript über das Internet.


Im März schlug die Veröffentlichung einer Reihe von Google-Forscher große Wellen: Auf DRAM-Chips lassen sich mit Gewalt Bits flippen und Angreifer können so den Rechner des Opfers abstürzen lassen oder gar Admin-Rechte erlangen. Jetzt haben Forscher der Technischen Universität Graz und der Firma Technicolor es geschafft,den sogenannten Rowhammer-Angriff auf JavaScript zu übertragen.


Damit kann man den Speicher aus der Ferne malträtieren, wenn das Opfer eine präparierte Webseite besucht. Die Gefahr eines gezielten Angriffs im Alltag ist zwar nach wie vor begrenzt, wenn es dem Angreifer aber nur darum geht, Daten in den Systemen zu verfälschen oder diese zum Absturz zu bringen, so ist dem Tür und Tor geöffnet und zwar nicht etwa nur für x86, sondern prinzipiell auch für ARM und andere Architekturen.


Mehr erfahren / Learn more:


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


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

Here's the BBC's Micro:bit, Raspberry Pi competitor

Here's the BBC's Micro:bit, Raspberry Pi competitor | 21st Century Learning and Teaching | Scoop.it
The project is a collaboration between the broadcaster and partners including ARM, Barclays, element14, Freescale, Lancaster University, Microsoft, Nordic Semiconductor, Samsung and the Wellcome Trust.

Every year 7 (6th grade) child in the UK will receive a BBC Micro:bit for free. That means up to 1 million devices will be distributed in the first batch.


Learn more:


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


Gust MEES's insight:
The project is a collaboration between the broadcaster and partners including ARM, Barclays, element14, Freescale, Lancaster University, Microsoft, Nordic Semiconductor, Samsung and the Wellcome Trust.

Every year 7 (6th grade) child in the UK will receive a BBC Micro:bit for free. That means up to 1 million devices will be distributed in the first batch.


Learn more:


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


ClaimSEO's comment, July 8, 2015 5:28 AM
Can I share this to my social network?
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.
Scooped by Gust MEES
Scoop.it!

Succès de la troisième édition de Hack4Kids - ICTSpring Europe 2015 | Coding

Succès de la troisième édition de Hack4Kids - ICTSpring Europe 2015 | Coding | 21st Century Learning and Teaching | Scoop.it
Ce mercredi 20 mai avait lieu le troisième Hack4Kids au centre de conférence Kirchberg dans le cadre de l’ICTSpring Europe 2015.
Gust MEES's insight:

Ce mercredi 20 mai avait lieu le troisième Hack4Kids au centre de conférence Kirchberg dans le cadre de l’ICTSpring Europe 2015.


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

EU Code Week 2014: 3,000+ events, 38 countries, about 100,000 participants | Coding | Infographic

EU Code Week 2014: 3,000+ events, 38 countries, about 100,000 participants | Coding | Infographic | 21st Century Learning and Teaching | Scoop.it


Learn more:


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


Gust MEES's insight:


Learn more:


https://gustmees.wordpress.com/2014/08/24/coding-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!

Plobot brings fun educational technology. It connects parents and teachers with the children of today | Coding

Plobot brings fun educational technology. It connects parents and teachers with the children of today | Coding | 21st Century Learning and Teaching | Scoop.it
Plobot brings fun educational technology. It connects parents and teachers with the children of today. Playing while learning is at the core of each activity, empowering kids to find creative solutions and use logical thinking.


Learn more / En savoir plus / Mehr erfahren:


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


Gust MEES's insight:

Plobot brings fun educational technology. It connects parents and teachers with the children of today. Playing while learning is at the core of each activity, empowering kids to find creative solutions and use logical thinking.


Learn more / En savoir plus / Mehr erfahren:


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




No comment yet.
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!

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!

Enfants et ados : il n’y a pas d’âge pour apprendre à programmer | Luxembourg | Coding | ICT | Digital Luxembourg

Enfants et ados : il n’y a pas d’âge pour apprendre à programmer | Luxembourg | Coding | ICT | Digital Luxembourg | 21st Century Learning and Teaching | Scoop.it
Au Luxembourg, les Code Clubs et le CoderDojo permettent à des jeunes de 7 à 18 ans de s’adonner au plaisir de la programmation.











En savoir plus / Learn more:



Gust MEES's insight:
Au Luxembourg, les Code Clubs et le CoderDojo permettent à des jeunes de 7 à 18 ans de s’adonner au plaisir de la programmation.






En savoir plus / Learn more:



Olivier Baggiano's curator insight, July 29, 2015 9:52 AM

it is never too late or too early to learn how to code. Most current students will need some knowledge of coding in their work life and it will give them an edge of those who don't. Having some knowledge certainly made my work life easier.

Scooped by Gust MEES
Scoop.it!

1.000.000 Mini-PCs verschenkt: BBC verteilt gratis Raspberry-Pi-Klone | Coding | Europe

1.000.000 Mini-PCs verschenkt: BBC verteilt gratis Raspberry-Pi-Klone | Coding | Europe | 21st Century Learning and Teaching | Scoop.it
Die britische BBC hat einen eigenen Mini-Computer vorgestellt, den micro:bit. Vor allem Kinder sollen damit das Programmieren lernen - um ein direktes Konkurrenzprodukt für Platinen-Computer wie den Raspberry Pi handelt es sich also nicht. Vielmehr soll der micro:bit mit Raspberry Pi, Arduino und dem Intel Galileo kompatibel sein.

Bis zu einer Million micro:bit will die BBC komplett kostenlos an Schüler im Alter zwischen 11 und 12 Jahren verteilen. Die Mini-Computer sind mit Bewegungssensoren, Kompass und Bluetooth ausgestattet. 25 rote LEDs können unmittelbar angesteuert werden, außerdem gibt es zwei Buttons und fünf I/O-Ports. Die Platine misst 4 Mal 5 Zentimeter und wird in unterschiedlichen Farben angeboten.


Learn more:


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


Gust MEES's insight:
Die britische BBC hat einen eigenen Mini-Computer vorgestellt, den micro:bit. Vor allem Kinder sollen damit das Programmieren lernen - um ein direktes Konkurrenzprodukt für Platinen-Computer wie den Raspberry Pi handelt es sich also nicht. Vielmehr soll der micro:bit mit Raspberry Pi, Arduino und dem Intel Galileo kompatibel sein.

Bis zu einer Million micro:bit will die BBC komplett kostenlos an Schüler im Alter zwischen 11 und 12 Jahren verteilen. Die Mini-Computer sind mit Bewegungssensoren, Kompass und Bluetooth ausgestattet. 25 rote LEDs können unmittelbar angesteuert werden, außerdem gibt es zwei Buttons und fünf I/O-Ports. Die Platine misst 4 Mal 5 Zentimeter und wird in unterschiedlichen Farben angeboten.


Learn more:


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


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

This is IT: 3 skills you need to have | eSkills | eLeadership | Coding | Big Data | Cloud

This is IT: 3 skills you need to have | eSkills | eLeadership | Coding | Big Data | Cloud | 21st Century Learning and Teaching | Scoop.it

IT skills learnt today will be extremely useful as 90% of all jobs need basic digital and ICT skills. New roles have appeared such as digital designer, application developer or data analyst. Meanwhile, traditional jobs also increasingly require digital skills. Reasoning skills such as problem-solving are now used in combination with ICT skills. These skills are essential for the process of job searching and to collect useful information about training, education and job vacancies.

Once you have got basic digital skills such as creating and adapting folders, printing or changing a password, don’t stop, move forward. These are some of the main skills in demand worldwide


Learn more:


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


https://gustmees.wordpress.com/2015/05/26/what-are-the-skills-needed-from-students-in-the-future/

  

http://www.scoop.it/t/21st-century-learning-and-teaching/?tag=eSkills+For+jobs+2015



Gust MEES's insight:

IT skills learnt today will be extremely useful as 90% of all jobs need basic digital and ICT skills. New roles have appeared such as digital designer, application developer or data analyst. Meanwhile, traditional jobs also increasingly require digital skills. Reasoning skills such as problem-solving are now used in combination with ICT skills. These skills are essential for the process of job searching and to collect useful information about training, education and job vacancies.

Once you have got basic digital skills such as creating and adapting folders, printing or changing a password, don’t stop, move forward. These are some of the main skills in demand worldwide


Learn more:


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


https://gustmees.wordpress.com/2015/05/26/what-are-the-skills-needed-from-students-in-the-future/

  

http://www.scoop.it/t/21st-century-learning-and-teaching/?tag=eSkills+For+jobs+2015

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

The next generation ICT talents at ICT Spring Europe 2015 | Coding | eSkills | Luxembourg | Europe

The next generation ICT talents at ICT Spring Europe 2015 | Coding | eSkills | Luxembourg | Europe | 21st Century Learning and Teaching | Scoop.it
The Hack4Kids ICT Spring edition will take place on Wednesday May 20th, in the afternoon at the New Conference Center Kirchberg. The Hack4Kids concept was started by Security Made in Lëtzebuerg








Learn more:


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


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


Gust MEES's insight:
The Hack4Kids ICT Spring edition will take place on Wednesday May 20th, in the afternoon at the New Conference Center Kirchberg. The Hack4Kids concept was started by Security Made in Lëtzebuerg


Learn more:


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


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


No comment yet.