pages
home
compiler
code compiler
processing
Processing code compiler
electronics
notes about electronics
laboratory
laboratory
logggin
login/logout
File
new code
open code
save code
export code
participates in the laboratory (as student)
begin a laboratory (as teacher)
login
Edit
undo
redo
select all
invert selection
deselect
select setup
select loop
After the
row #1
row #2
row #3
row #4
row #5
row #6
row #7
row #8
row #9
row #10
row #11
row #12
row #13
row #14
row #15
row #16
row #17
row #18
row #19
row #20
row #21
last row 22
move
selected rows.
copy
selected rows.
past
from the clipboard.
Copy in the clipboard
selected rows,
for another code.
delete
selected rows.
Tooling
Add variable
tooling default
"Arduino Esplora"
"Arduino Robot"
Danger Shield - Sparkfun
CodeShield
LED
Add a green led
Add a yellow led
Add a red led
Add a blue led
Add a RGB led
Add bicolor led
Add LED matrix
Add a 7 segments led
actuators
Add a speaker
Add an ultrasonic sensor
Add a motor
Add a servo
Add a relay
Add a IR emitter
Add a display lcd
sensors
Add a button
Add a switch
Add a potentiometer
Add an encoder
Add a photoresistor
Add a temperature sensor
Add a humidity sensor
Add a microphone
Add an ultrasonic sensor
Add a remote control IR
Add a IR receiver
Add a generic actuator
Add a generic sensor
Actions
wait for a time
switch off / switch on
modulate the voltage
drive servo motor
play a note
read from a sensor
detects the status of a button
reads the duration of an impulse
transform a variable
if that happens do this
repeat n times
new function
call a function
Add a note
Add a marker
generate a random number
milliseconds
read from the serial port
write on the serial port
write on a display LCD
View
italian
english
style
clear
style
space
style
classic
larger character
smaller character
pages
electricity
guide
contacts
tooling
row:0
pin0
pin1
pin2
pin3˜
pin4
pin5˜
pin6˜
pin7
pin8
pin9˜
pin10˜
pin11˜
pin12
pin13
pinA0
pinA1
pinA2
pinA3
pinA4
pinA5
row:1
pin0
pin1
pin2
pin3˜
pin4
pin5˜
pin6˜
pin7
pin8
pin9˜
pin10˜
pin11˜
pin12
pin13
pinA0
pinA1
pinA2
pinA3
pinA4
pinA5
row:2
pin0
pin1
pin2
pin3˜
pin4
pin5˜
pin6˜
pin7
pin8
pin9˜
pin10˜
pin11˜
pin12
pin13
pinA0
pinA1
pinA2
pinA3
pinA4
pinA5
row:3
pin0
pin1
pin2
pin3˜
pin4
pin5˜
pin6˜
pin7
pin8
pin9˜
pin10˜
pin11˜
pin12
pin13
pinA0
pinA1
pinA2
pinA3
pinA4
pinA5
engaged pins: 4
declare variables
riga:5
=
integer
floating-point
text
array
main
row:6
the variable
...
A
is equal to... read the sensor:
...
_sensorlight
row:7
IF HAPPENS THAT
...
A
is greater than
is less than
is equal to
is not equal to
an even if/or if...
row:8
SWITCH ON (5 Volt)
the
_led1
_led2
_led3
row:9
SWITCH OFF (0 Volt)
the
_led1
_led2
_led3
row:10
SWITCH OFF (0 Volt)
the
_led1
_led2
_led3
row:11
(close the cycle)
row:12
IF HAPPENS THAT
...
A
is greater than
is less than
is equal to
is not equal to
or IF
and even IF
...
A
...
is greater than
is less than
is equal to
is not equal to
row:13
SWITCH ON (5 Volt)
the
_led1
_led2
_led3
row:14
SWITCH ON (5 Volt)
the
_led1
_led2
_led3
row:15
SWITCH OFF (0 Volt)
the
_led1
_led2
_led3
row:16
(close the cycle)
row:17
IF HAPPENS THAT
...
A
is greater than
is less than
is equal to
is not equal to
an even if/or if...
row:18
SWITCH ON (5 Volt)
the
_led1
_led2
_led3
row:19
SWITCH ON (5 Volt)
the
_led1
_led2
_led3
row:20
SWITCH ON (5 Volt)
the
_led1
_led2
_led3
row:21
(close the cycle)
row:22
WAIT
milliseconds
actions
new function
call a function
messaggi
...
file
di
clear
space
classic
select all
invert selection
deselect
select setup
select loop
After the
1th row
2th row
3th row
4th row
5th row
6th row
7th row
8th row
9th row
10th row
11th row
12th row
13th row
14th row
15th row
16th row
17th row
18th row
19th row
20th row
21th row
last row
move
the selected rows.
copy
the selected rows.
past
from the clipboard.
copy in the clipboard
the selected rows.
erase
the selected rows.
components
actions
wait
switch off / switch on
modulate the voltage
drive servo motor
play a note
read from a sensor
detects the status of a button
reads the duration of an impulse
transform a variable
if that happens do this
repeat n times
new function
call a function
Add a note
Add a marker
generate a random number
milliseconds
reads from the serial port
write on the serial port
write on a display LCD
//programma: sensor //******* pin ******** //******* declare ******** const int pin_led1=1;//pin of _led1 const int pin_led2=2;//pin of _led2 const int pin_led3=3;//pin of _led3 const int pin_sensorlight=A0;//pin sensorluce int A=0;//declares the variable //********** setup ********** void setup(){ pinMode(pin_led1,OUTPUT); pinMode(pin_led2,OUTPUT); pinMode(pin_led3,OUTPUT); pinMode(pin_sensorlight,INPUT); } //********** loop ********** void loop() { A=analogRead(pin_sensorlight); // reads the sensor _sensorlight if(A<80){ digitalWrite(pin_led1,HIGH); // HIGH/LOW is the voltage 5V/0V) digitalWrite(pin_led2,LOW); // HIGH/LOW is the voltage 5V/0V) digitalWrite(pin_led3,LOW); // HIGH/LOW is the voltage 5V/0V) } if(A>80 && A<0){ digitalWrite(pin_led1,HIGH); // HIGH/LOW is the voltage 5V/0V) digitalWrite(pin_led2,HIGH); // HIGH/LOW is the voltage 5V/0V) digitalWrite(pin_led3,LOW); // HIGH/LOW is the voltage 5V/0V) } if(A>160){ digitalWrite(pin_led1,HIGH); // HIGH/LOW is the voltage 5V/0V) digitalWrite(pin_led2,HIGH); // HIGH/LOW is the voltage 5V/0V) digitalWrite(pin_led3,HIGH); // HIGH/LOW is the voltage 5V/0V) } delay(500);//attendi };//end loop //powered by "Arduinomio" (C) //www.mastrohora.it
copy/past in Arduino
logout