SlideShare une entreprise Scribd logo
1  sur  45
Télécharger pour lire hors ligne
JavaScript Makers: How JS is Helping Drive the Maker Movement
28 SEPT 2013 - 200ok
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
If it can be imagined it can be made.
2
Saturday, September 28, 13
@jdcravens
github.com/jessecravens
html5hacks.com
frog
Saturday, September 28, 13
9 28 2013200ok 2013 4
Saturday, September 28, 13
JavaScript Makers
How JS is helping drive the Maker Movement
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
Capabilities Overview
Prototyping Boards
Sensors and WebSocket
Actuators
Peripherals
Leap
Drones
AR Drone
WiFli
Virtual Worlds
scriptCraft
voxel.js
JS Makers
6
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
Educational/Fun
Beginner Programming
Beginner Robotics
Beginner Open Hardware/Electronics
JS Makers
7
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
Making things always combines form
with function, the art of making should be
appreciated and celebrated
8
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
JS Makers
9
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
12 - open hardware/software demos
3- prototyping boards
1 - drone
1 - dissected chopper
1 - virtual world
1 - 6 year old son as my co-presenter
100’s - packets over the network
What could possibly go wrong?
JS Makers
10
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
@nonken
@bassistance
@voodootikigod
@rwaldron
@walter
@maxogden
...and many more
Path Pavers
11
Saturday, September 28, 13
9 28 2013200ok 2013
JavaScript Makers
Arduino Uno
12
Microcontroller board based on the ATmega328
Flash Memory 32 KB (ATmega328)
SRAM 2 KB (ATmega328)
Clock Speed 16 MHz
Operating Voltage 5V
14 digital input/output pins
6 analog inputs
USB connection
Saturday, September 28, 13
9 28 2013200ok 2013
JavaScript Makers
BeagleBone by TI
13
Processor
720MHz super-scalar ARM Cortex-A8 (armv7a)
3D graphics accelerator
ARM Cortex-M3 for power management
Connectivity
USB client
USB host
Ethernet
2x 46 pin headers
2x I2C, 5x UART, I2S, SPI,
CAN, 66x 3.3V GPIO, 7x ADC
Software
4GB microSD card with Angstrom Distribution
Cloud9 IDE on Node.JS with Bonescript library
Saturday, September 28, 13
9 28 2013200ok 2013
JavaScript Makers
Raspberry Pi
14
Processor
700MHz ARM1176 JZF-S (armv6k) - overclock at 800MHz
Broadcam VideoCore IV
Connectivity
USB client
USB host
Ethernet
17 GPIOs pins
Software
Debian as default
WebIDE with Python Library
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
matrix
prototyping boards
15
Saturday, September 28, 13
9 28 2013200ok 2013
JavaScript Makers
16
serialPort.on("open", function () {
console.log('open');
serialPort.on('data', function(data) {
console.log('data received: ' + data);
});
serialPort.write("lsn", function(err, results) {
console.log('err ' + err);
console.log('results ' + results);
});
});
node-serialport
Saturday, September 28, 13
9 28 2013200ok 2013
JavaScript Makers
Arduino Interfacing with Beaglebone
17
Node.js
HTTP / WEB SOCKET SERVER
Serial
node-serialport firmata
HTTP
johnny-five
firmata.js
Node.js
HTTP / WEB SOCKET SERVER
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
demo: Johnny2Beagle
18
Saturday, September 28, 13
9 28 2013200ok 2013
JavaScript Makers
trailr
19
Node.js
HTTP / WEB SOCKET SERVER
Node.js
HTTP / WEB SOCKET SERVER
Node.js
HTTP / WEB SOCKET SERVER
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
lookin’ good:
extend with modules
tessel
20
var	
  tessel	
  =	
  require('tessel');
var	
  servos	
  =	
  require('servo-­‐pca9685')
	
  	
  .connect(tessel.port('A'));
	
  	
  
var	
  degrees	
  =	
  0;
setInterval(function	
  ()	
  {
	
  	
  servos.moveServo(1,	
  degrees);
	
  	
  degrees	
  =	
  degrees	
  ==	
  0	
  ?	
  180	
  :	
  0;
},	
  500);
var	
  rfid	
  =	
  require('rfid-­‐pn532')
	
  	
  .connect(tessel.port('b'),	
  function	
  ()	
  {
	
  	
  	
  	
  rfid.on('read',	
  function	
  (err,	
  data)	
  {
	
  	
  	
  	
  	
  	
  //	
  Read	
  data	
  whenever	
  a	
  card	
  is	
  read.
	
  	
  	
  	
  	
  	
  console.log('Read	
  a	
  card:',	
  data);
	
  	
  	
  	
  });
	
  	
  });
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
interactive JS interpreter for Micro-controllers
plug/play - no software to install
can be installed on other boards
espruino
21
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
A most effective step in refining/
developing a thing is collaborating with
others on it.
22
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
trailr-remote push sketches over WebSocket
trailr-mesh R24 mesh network and node.js based server
trailr-admin app running on a central hub (Beaglebone)
‘Floor Plan View’ with HTML5 Canvas
trailr-solar solar charge voltage divider
trailr
23
Saturday, September 28, 13
9 28 2013200ok 2013
HTML5 and the Internet of Things
24
Solar Charge
ACS715 Hall Effect sensor
Grape Solar 100-Watt Monocrystalline
Off-Grid PV Solar Panel
void loop() {
// read the input on analog pin 0:
int sensor0Value = analogRead(A0);
float pinVoltage = sensor0Value * 0.00488;
float battVoltage = pinVoltage * ((10+20)/10);
// Vout = (R2/(R1+R2))
//float solarPower = solarPanelVoltage * solarPanelCurrent;
// P = V*I , power = voltage * current , measured in W i.e. 79% of 100W MAX capacity
Serial.print(battVoltage);
Serial.println(" V - battery");
}
Saturday, September 28, 13
9 28 2013200ok 2013
HTML5 and the Internet of Things
25
Solar Charge
Grape Solar 100-Watt Monocrystalline
Off-Grid PV Solar Panel
12V 10Amp Charge Controlller
Saturday, September 28, 13
9 28 2013200ok 2013
HTML5 and the Internet of Things
26
Solar Charge
Voltage Divider
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
onboard, live HD video streaming
auto stabilizers
wifi enabled
nodecopter
27
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
demo: AR-Drone Basics
28
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
demo: AR-Drone WebFlight
29
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
Begin with the end in mind.
30
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
from wiFli to wiRide
31
node-wiFli
Interactive Toy Concepts
Amazon refurb - $15
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
demo: wiRide
32
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
airspace - overview of the leap
WebSocket server
JSON data format
leapjs
33
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
demo: leapjs, console
34
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
demo: web based visualizer
35
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
demo: nodecopter-leap
36
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
The first step in making a thing, is
visualizing it.
37
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
3D modeling - basics, building Objects
parent/child - workflow
reading/phonics - signs, menus
math - repl
JS programming patterns - modular, async
scriptcraft
38
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
demo: scriptCraft building blocks
39
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
demo: math repl
40
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
demo: reading sight words
41
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
Create 3d voxel games like Minecraft in the browser
with WebGL/JS
voxel.js
42
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
demo: voxel creator
43
Saturday, September 28, 13
9 28 2013200ok 2013
200ok 2013
More than any other programming language JavaScript
is helping drive the Maker movement.
As open hardware lowers the barrier of entry to
electronics...
As 3D printing lowers the barrier of entry to
manufacturing...
JavaScript lowers the barrier of entry to programming.
JavaScript Makers
44
Saturday, September 28, 13
© 2012 frog. All rights reserved.
Saturday, September 28, 13

Contenu connexe

Similaire à JavaScript Makers: How JS is Helping Drive the Maker Movement

Workers of the web - BrazilJS 2013
Workers of the web - BrazilJS 2013Workers of the web - BrazilJS 2013
Workers of the web - BrazilJS 2013Thibault Imbert
 
HTML5 for mobile development
HTML5 for mobile developmentHTML5 for mobile development
HTML5 for mobile developmentCarlos Justiniano
 
Open Source Monitoring for Java with JMX and Graphite (GeeCON 2013)
Open Source Monitoring for Java with JMX and Graphite (GeeCON 2013)Open Source Monitoring for Java with JMX and Graphite (GeeCON 2013)
Open Source Monitoring for Java with JMX and Graphite (GeeCON 2013)Cyrille Le Clerc
 
PLV8 - The PostgreSQL web side
PLV8 - The PostgreSQL web sidePLV8 - The PostgreSQL web side
PLV8 - The PostgreSQL web sideLucio Grenzi
 
WebGL Crash Course
WebGL Crash CourseWebGL Crash Course
WebGL Crash CourseTony Parisi
 
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第3回
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第3回JavaScriptを使って学ぶEnd-to-Endセキュリティ 第3回
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第3回Jun Kurihara
 
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NCAndroid Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NCJim Tochterman
 
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第1回
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第1回JavaScriptを使って学ぶEnd-to-Endセキュリティ 第1回
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第1回Jun Kurihara
 
Get Back in Control of Your SQL - #33rdDegree
Get Back in Control of Your SQL - #33rdDegreeGet Back in Control of Your SQL - #33rdDegree
Get Back in Control of Your SQL - #33rdDegreeDataGeekery
 
HTML5 and Other Modern Browser Game Tech
HTML5 and Other Modern Browser Game TechHTML5 and Other Modern Browser Game Tech
HTML5 and Other Modern Browser Game Techvincent_scheib
 
Get Back in Control of Your SQL with jOOQ at #Java2Days
Get Back in Control of Your SQL with jOOQ at #Java2DaysGet Back in Control of Your SQL with jOOQ at #Java2Days
Get Back in Control of Your SQL with jOOQ at #Java2DaysLukas Eder
 
The Awesome jOOQ JavaOne Talk
The Awesome jOOQ JavaOne TalkThe Awesome jOOQ JavaOne Talk
The Awesome jOOQ JavaOne TalkLukas Eder
 
Best Way to Write SQL in Java
Best Way to Write SQL in JavaBest Way to Write SQL in Java
Best Way to Write SQL in JavaGerger
 
DMCA #25: Jenkins - Docker & Android: Comment Docker peu faciliter la créatio...
DMCA #25: Jenkins - Docker & Android: Comment Docker peu faciliter la créatio...DMCA #25: Jenkins - Docker & Android: Comment Docker peu faciliter la créatio...
DMCA #25: Jenkins - Docker & Android: Comment Docker peu faciliter la créatio...Olivier Destrebecq
 
Microsoft, java and you!
Microsoft, java and you!Microsoft, java and you!
Microsoft, java and you!George Adams
 
Prototyping in the cloud
Prototyping in the cloudPrototyping in the cloud
Prototyping in the cloudKirsten Hunter
 
Continuous Delivery at Netflix
Continuous Delivery at NetflixContinuous Delivery at Netflix
Continuous Delivery at NetflixRob Spieldenner
 
Lone StarPHP 2013 - Building Web Apps from a New Angle
Lone StarPHP 2013 - Building Web Apps from a New AngleLone StarPHP 2013 - Building Web Apps from a New Angle
Lone StarPHP 2013 - Building Web Apps from a New AnglePablo Godel
 

Similaire à JavaScript Makers: How JS is Helping Drive the Maker Movement (20)

Workers of the web - BrazilJS 2013
Workers of the web - BrazilJS 2013Workers of the web - BrazilJS 2013
Workers of the web - BrazilJS 2013
 
HTML5 for mobile development
HTML5 for mobile developmentHTML5 for mobile development
HTML5 for mobile development
 
Open Source Monitoring for Java with JMX and Graphite (GeeCON 2013)
Open Source Monitoring for Java with JMX and Graphite (GeeCON 2013)Open Source Monitoring for Java with JMX and Graphite (GeeCON 2013)
Open Source Monitoring for Java with JMX and Graphite (GeeCON 2013)
 
PLV8 - The PostgreSQL web side
PLV8 - The PostgreSQL web sidePLV8 - The PostgreSQL web side
PLV8 - The PostgreSQL web side
 
WebGL Crash Course
WebGL Crash CourseWebGL Crash Course
WebGL Crash Course
 
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第3回
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第3回JavaScriptを使って学ぶEnd-to-Endセキュリティ 第3回
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第3回
 
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NCAndroid Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
Android Development w/ ArcGIS Server - Esri Dev Meetup - Charlotte, NC
 
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第1回
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第1回JavaScriptを使って学ぶEnd-to-Endセキュリティ 第1回
JavaScriptを使って学ぶEnd-to-Endセキュリティ 第1回
 
Get Back in Control of Your SQL - #33rdDegree
Get Back in Control of Your SQL - #33rdDegreeGet Back in Control of Your SQL - #33rdDegree
Get Back in Control of Your SQL - #33rdDegree
 
HTML5 and Other Modern Browser Game Tech
HTML5 and Other Modern Browser Game TechHTML5 and Other Modern Browser Game Tech
HTML5 and Other Modern Browser Game Tech
 
Get Back in Control of your SQL
Get Back in Control of your SQLGet Back in Control of your SQL
Get Back in Control of your SQL
 
Get Back in Control of Your SQL with jOOQ at #Java2Days
Get Back in Control of Your SQL with jOOQ at #Java2DaysGet Back in Control of Your SQL with jOOQ at #Java2Days
Get Back in Control of Your SQL with jOOQ at #Java2Days
 
The Awesome jOOQ JavaOne Talk
The Awesome jOOQ JavaOne TalkThe Awesome jOOQ JavaOne Talk
The Awesome jOOQ JavaOne Talk
 
Best Way to Write SQL in Java
Best Way to Write SQL in JavaBest Way to Write SQL in Java
Best Way to Write SQL in Java
 
DMCA #25: Jenkins - Docker & Android: Comment Docker peu faciliter la créatio...
DMCA #25: Jenkins - Docker & Android: Comment Docker peu faciliter la créatio...DMCA #25: Jenkins - Docker & Android: Comment Docker peu faciliter la créatio...
DMCA #25: Jenkins - Docker & Android: Comment Docker peu faciliter la créatio...
 
Rest, sockets em golang
Rest, sockets em golangRest, sockets em golang
Rest, sockets em golang
 
Microsoft, java and you!
Microsoft, java and you!Microsoft, java and you!
Microsoft, java and you!
 
Prototyping in the cloud
Prototyping in the cloudPrototyping in the cloud
Prototyping in the cloud
 
Continuous Delivery at Netflix
Continuous Delivery at NetflixContinuous Delivery at Netflix
Continuous Delivery at Netflix
 
Lone StarPHP 2013 - Building Web Apps from a New Angle
Lone StarPHP 2013 - Building Web Apps from a New AngleLone StarPHP 2013 - Building Web Apps from a New Angle
Lone StarPHP 2013 - Building Web Apps from a New Angle
 

Dernier

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 

Dernier (20)

The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 

JavaScript Makers: How JS is Helping Drive the Maker Movement

  • 1. JavaScript Makers: How JS is Helping Drive the Maker Movement 28 SEPT 2013 - 200ok Saturday, September 28, 13
  • 2. 9 28 2013200ok 2013 200ok 2013 If it can be imagined it can be made. 2 Saturday, September 28, 13
  • 4. 9 28 2013200ok 2013 4 Saturday, September 28, 13
  • 5. JavaScript Makers How JS is helping drive the Maker Movement Saturday, September 28, 13
  • 6. 9 28 2013200ok 2013 200ok 2013 Capabilities Overview Prototyping Boards Sensors and WebSocket Actuators Peripherals Leap Drones AR Drone WiFli Virtual Worlds scriptCraft voxel.js JS Makers 6 Saturday, September 28, 13
  • 7. 9 28 2013200ok 2013 200ok 2013 Educational/Fun Beginner Programming Beginner Robotics Beginner Open Hardware/Electronics JS Makers 7 Saturday, September 28, 13
  • 8. 9 28 2013200ok 2013 200ok 2013 Making things always combines form with function, the art of making should be appreciated and celebrated 8 Saturday, September 28, 13
  • 9. 9 28 2013200ok 2013 200ok 2013 JS Makers 9 Saturday, September 28, 13
  • 10. 9 28 2013200ok 2013 200ok 2013 12 - open hardware/software demos 3- prototyping boards 1 - drone 1 - dissected chopper 1 - virtual world 1 - 6 year old son as my co-presenter 100’s - packets over the network What could possibly go wrong? JS Makers 10 Saturday, September 28, 13
  • 11. 9 28 2013200ok 2013 200ok 2013 @nonken @bassistance @voodootikigod @rwaldron @walter @maxogden ...and many more Path Pavers 11 Saturday, September 28, 13
  • 12. 9 28 2013200ok 2013 JavaScript Makers Arduino Uno 12 Microcontroller board based on the ATmega328 Flash Memory 32 KB (ATmega328) SRAM 2 KB (ATmega328) Clock Speed 16 MHz Operating Voltage 5V 14 digital input/output pins 6 analog inputs USB connection Saturday, September 28, 13
  • 13. 9 28 2013200ok 2013 JavaScript Makers BeagleBone by TI 13 Processor 720MHz super-scalar ARM Cortex-A8 (armv7a) 3D graphics accelerator ARM Cortex-M3 for power management Connectivity USB client USB host Ethernet 2x 46 pin headers 2x I2C, 5x UART, I2S, SPI, CAN, 66x 3.3V GPIO, 7x ADC Software 4GB microSD card with Angstrom Distribution Cloud9 IDE on Node.JS with Bonescript library Saturday, September 28, 13
  • 14. 9 28 2013200ok 2013 JavaScript Makers Raspberry Pi 14 Processor 700MHz ARM1176 JZF-S (armv6k) - overclock at 800MHz Broadcam VideoCore IV Connectivity USB client USB host Ethernet 17 GPIOs pins Software Debian as default WebIDE with Python Library Saturday, September 28, 13
  • 15. 9 28 2013200ok 2013 200ok 2013 matrix prototyping boards 15 Saturday, September 28, 13
  • 16. 9 28 2013200ok 2013 JavaScript Makers 16 serialPort.on("open", function () { console.log('open'); serialPort.on('data', function(data) { console.log('data received: ' + data); }); serialPort.write("lsn", function(err, results) { console.log('err ' + err); console.log('results ' + results); }); }); node-serialport Saturday, September 28, 13
  • 17. 9 28 2013200ok 2013 JavaScript Makers Arduino Interfacing with Beaglebone 17 Node.js HTTP / WEB SOCKET SERVER Serial node-serialport firmata HTTP johnny-five firmata.js Node.js HTTP / WEB SOCKET SERVER Saturday, September 28, 13
  • 18. 9 28 2013200ok 2013 200ok 2013 demo: Johnny2Beagle 18 Saturday, September 28, 13
  • 19. 9 28 2013200ok 2013 JavaScript Makers trailr 19 Node.js HTTP / WEB SOCKET SERVER Node.js HTTP / WEB SOCKET SERVER Node.js HTTP / WEB SOCKET SERVER Saturday, September 28, 13
  • 20. 9 28 2013200ok 2013 200ok 2013 lookin’ good: extend with modules tessel 20 var  tessel  =  require('tessel'); var  servos  =  require('servo-­‐pca9685')    .connect(tessel.port('A'));     var  degrees  =  0; setInterval(function  ()  {    servos.moveServo(1,  degrees);    degrees  =  degrees  ==  0  ?  180  :  0; },  500); var  rfid  =  require('rfid-­‐pn532')    .connect(tessel.port('b'),  function  ()  {        rfid.on('read',  function  (err,  data)  {            //  Read  data  whenever  a  card  is  read.            console.log('Read  a  card:',  data);        });    }); Saturday, September 28, 13
  • 21. 9 28 2013200ok 2013 200ok 2013 interactive JS interpreter for Micro-controllers plug/play - no software to install can be installed on other boards espruino 21 Saturday, September 28, 13
  • 22. 9 28 2013200ok 2013 200ok 2013 A most effective step in refining/ developing a thing is collaborating with others on it. 22 Saturday, September 28, 13
  • 23. 9 28 2013200ok 2013 200ok 2013 trailr-remote push sketches over WebSocket trailr-mesh R24 mesh network and node.js based server trailr-admin app running on a central hub (Beaglebone) ‘Floor Plan View’ with HTML5 Canvas trailr-solar solar charge voltage divider trailr 23 Saturday, September 28, 13
  • 24. 9 28 2013200ok 2013 HTML5 and the Internet of Things 24 Solar Charge ACS715 Hall Effect sensor Grape Solar 100-Watt Monocrystalline Off-Grid PV Solar Panel void loop() { // read the input on analog pin 0: int sensor0Value = analogRead(A0); float pinVoltage = sensor0Value * 0.00488; float battVoltage = pinVoltage * ((10+20)/10); // Vout = (R2/(R1+R2)) //float solarPower = solarPanelVoltage * solarPanelCurrent; // P = V*I , power = voltage * current , measured in W i.e. 79% of 100W MAX capacity Serial.print(battVoltage); Serial.println(" V - battery"); } Saturday, September 28, 13
  • 25. 9 28 2013200ok 2013 HTML5 and the Internet of Things 25 Solar Charge Grape Solar 100-Watt Monocrystalline Off-Grid PV Solar Panel 12V 10Amp Charge Controlller Saturday, September 28, 13
  • 26. 9 28 2013200ok 2013 HTML5 and the Internet of Things 26 Solar Charge Voltage Divider Saturday, September 28, 13
  • 27. 9 28 2013200ok 2013 200ok 2013 onboard, live HD video streaming auto stabilizers wifi enabled nodecopter 27 Saturday, September 28, 13
  • 28. 9 28 2013200ok 2013 200ok 2013 demo: AR-Drone Basics 28 Saturday, September 28, 13
  • 29. 9 28 2013200ok 2013 200ok 2013 demo: AR-Drone WebFlight 29 Saturday, September 28, 13
  • 30. 9 28 2013200ok 2013 200ok 2013 Begin with the end in mind. 30 Saturday, September 28, 13
  • 31. 9 28 2013200ok 2013 200ok 2013 from wiFli to wiRide 31 node-wiFli Interactive Toy Concepts Amazon refurb - $15 Saturday, September 28, 13
  • 32. 9 28 2013200ok 2013 200ok 2013 demo: wiRide 32 Saturday, September 28, 13
  • 33. 9 28 2013200ok 2013 200ok 2013 airspace - overview of the leap WebSocket server JSON data format leapjs 33 Saturday, September 28, 13
  • 34. 9 28 2013200ok 2013 200ok 2013 demo: leapjs, console 34 Saturday, September 28, 13
  • 35. 9 28 2013200ok 2013 200ok 2013 demo: web based visualizer 35 Saturday, September 28, 13
  • 36. 9 28 2013200ok 2013 200ok 2013 demo: nodecopter-leap 36 Saturday, September 28, 13
  • 37. 9 28 2013200ok 2013 200ok 2013 The first step in making a thing, is visualizing it. 37 Saturday, September 28, 13
  • 38. 9 28 2013200ok 2013 200ok 2013 3D modeling - basics, building Objects parent/child - workflow reading/phonics - signs, menus math - repl JS programming patterns - modular, async scriptcraft 38 Saturday, September 28, 13
  • 39. 9 28 2013200ok 2013 200ok 2013 demo: scriptCraft building blocks 39 Saturday, September 28, 13
  • 40. 9 28 2013200ok 2013 200ok 2013 demo: math repl 40 Saturday, September 28, 13
  • 41. 9 28 2013200ok 2013 200ok 2013 demo: reading sight words 41 Saturday, September 28, 13
  • 42. 9 28 2013200ok 2013 200ok 2013 Create 3d voxel games like Minecraft in the browser with WebGL/JS voxel.js 42 Saturday, September 28, 13
  • 43. 9 28 2013200ok 2013 200ok 2013 demo: voxel creator 43 Saturday, September 28, 13
  • 44. 9 28 2013200ok 2013 200ok 2013 More than any other programming language JavaScript is helping drive the Maker movement. As open hardware lowers the barrier of entry to electronics... As 3D printing lowers the barrier of entry to manufacturing... JavaScript lowers the barrier of entry to programming. JavaScript Makers 44 Saturday, September 28, 13
  • 45. © 2012 frog. All rights reserved. Saturday, September 28, 13