Download presentation
Presentation is loading. Please wait.
Published byOlivia Sparks Modified over 8 years ago
1
[LAB 2] Cloud9 IDE Cloud9 IDE introduction Example and Exercise
2
Get in Cloud9 Go to 192.168.7.2:3000 with your Browser…
3
Cloud9 IDE Project Bar
4
Cloud9 IDE Project Files Tab
5
Cloud9 IDE Open Files Tab
6
Cloud9 IDE Preference Tab
7
Cloud9 IDE Project Files list
8
Cloud9 IDE Active File Tabs
9
Cloud9 IDE Zen Mode Switch
10
Cloud9 IDE Command Line
11
Cloud9 IDE Run configuration
12
Cloud9 IDE Output Information
13
Cloud9 IDE Debug Toolbar
14
Cloud9 IDE Bone.js
15
Example 1 Creat a new file Blink the User Led
16
Example 1 Code: require('bonescript'); ledPin = bone.USR3; setup = function() { pinMode (ledPin, OUTPUT); }; loop = function() { digitalWrite(ledPin, HIGH); delay(1000); digitalWrite(ledPin, LOW); delay(1000); };
17
Exercise: Open the file Blinkled.js Modify it so that we cloud blink another led on beaglebone instead of external led. Change the toggle mode of leds.
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.