Skip to content

Commit 948a5c8

Browse files
committedDec 7, 2012
Added support for Arduino Esplora
1 parent 2e5851c commit 948a5c8

File tree

18 files changed

+1132
-0
lines changed

18 files changed

+1132
-0
lines changed
 

‎build/shared/revisions.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2+
[hardware]
3+
4+
* Added support for the Arduino Esplora
5+
16
ARDUINO 1.0.2 - 2012.11.05
27

38
[hardware]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
;************************************************************
2+
; Windows USB CDC ACM Setup File
3+
; Copyright (c) 2000 Microsoft Corporation
4+
5+
6+
[Version]
7+
Signature="$Windows NT$"
8+
Class=Ports
9+
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
10+
Provider=%MFGNAME%
11+
LayoutFile=layout.inf
12+
CatalogFile=%MFGFILENAME%.cat
13+
DriverVer=11/15/2007,5.1.2600.0
14+
15+
[Manufacturer]
16+
%MFGNAME%=DeviceList, NTamd64
17+
18+
[DestinationDirs]
19+
DefaultDestDir=12
20+
21+
22+
;------------------------------------------------------------------------------
23+
; Windows 2000/XP/Vista-32bit Sections
24+
;------------------------------------------------------------------------------
25+
26+
[DriverInstall.nt]
27+
include=mdmcpq.inf
28+
CopyFiles=DriverCopyFiles.nt
29+
AddReg=DriverInstall.nt.AddReg
30+
31+
[DriverCopyFiles.nt]
32+
usbser.sys,,,0x20
33+
34+
[DriverInstall.nt.AddReg]
35+
HKR,,DevLoader,,*ntkern
36+
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
37+
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
38+
39+
[DriverInstall.nt.Services]
40+
AddService=usbser, 0x00000002, DriverService.nt
41+
42+
[DriverService.nt]
43+
DisplayName=%SERVICE%
44+
ServiceType=1
45+
StartType=3
46+
ErrorControl=1
47+
ServiceBinary=%12%\%DRIVERFILENAME%.sys
48+
49+
;------------------------------------------------------------------------------
50+
; Vista-64bit Sections
51+
;------------------------------------------------------------------------------
52+
53+
[DriverInstall.NTamd64]
54+
include=mdmcpq.inf
55+
CopyFiles=DriverCopyFiles.NTamd64
56+
AddReg=DriverInstall.NTamd64.AddReg
57+
58+
[DriverCopyFiles.NTamd64]
59+
%DRIVERFILENAME%.sys,,,0x20
60+
61+
[DriverInstall.NTamd64.AddReg]
62+
HKR,,DevLoader,,*ntkern
63+
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
64+
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
65+
66+
[DriverInstall.NTamd64.Services]
67+
AddService=usbser, 0x00000002, DriverService.NTamd64
68+
69+
[DriverService.NTamd64]
70+
DisplayName=%SERVICE%
71+
ServiceType=1
72+
StartType=3
73+
ErrorControl=1
74+
ServiceBinary=%12%\%DRIVERFILENAME%.sys
75+
76+
77+
;------------------------------------------------------------------------------
78+
; Vendor and Product ID Definitions
79+
;------------------------------------------------------------------------------
80+
; When developing your USB device, the VID and PID used in the PC side
81+
; application program and the firmware on the microcontroller must match.
82+
; Modify the below line to use your VID and PID. Use the format as shown below.
83+
; Note: One INF file can be used for multiple devices with different VID and PIDs.
84+
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
85+
;------------------------------------------------------------------------------
86+
[SourceDisksFiles]
87+
[SourceDisksNames]
88+
[DeviceList]
89+
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_003C
90+
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_803C&MI_00
91+
92+
[DeviceList.NTamd64]
93+
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_003C
94+
%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_803C&MI_00
95+
96+
;------------------------------------------------------------------------------
97+
; String Definitions
98+
;------------------------------------------------------------------------------
99+
;Modify these strings to customize your device
100+
;------------------------------------------------------------------------------
101+
[Strings]
102+
MFGFILENAME="CDC_vista"
103+
DRIVERFILENAME ="usbser"
104+
MFGNAME="Arduino LLC (www.arduino.cc)"
105+
INSTDISK="Arduino Esplora Driver Installer"
106+
DESCRIPTION="Arduino Esplora"
107+
SERVICE="USB RS-232 Emulation Driver"

‎hardware/arduino/boards.txt

+21
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,27 @@ leonardo.build.variant=leonardo
167167

168168
##############################################################
169169

170+
esplora.name=Arduino Esplora
171+
esplora.upload.protocol=avr109
172+
esplora.upload.maximum_size=28672
173+
esplora.upload.speed=57600
174+
esplora.upload.disable_flushing=true
175+
esplora.bootloader.low_fuses=0xff
176+
esplora.bootloader.high_fuses=0xd8
177+
esplora.bootloader.extended_fuses=0xcb
178+
esplora.bootloader.path=caterina
179+
esplora.bootloader.file=Caterina-Esplora.hex
180+
esplora.bootloader.unlock_bits=0x3F
181+
esplora.bootloader.lock_bits=0x2F
182+
esplora.build.mcu=atmega32u4
183+
esplora.build.f_cpu=16000000L
184+
esplora.build.vid=0x2341
185+
esplora.build.pid=0x803C
186+
esplora.build.core=arduino
187+
esplora.build.variant=leonardo
188+
189+
##############################################################
190+
170191
micro.name=Arduino Micro
171192
micro.upload.protocol=avr109
172193
micro.upload.maximum_size=28672

‎hardware/arduino/bootloaders/caterina/Caterina.c

100755100644
File mode changed.

‎hardware/arduino/bootloaders/caterina/Caterina.h

100755100644
File mode changed.

‎hardware/arduino/bootloaders/caterina/Descriptors.c

100755100644
+2
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,8 @@ const USB_Descriptor_String_t ProductString =
197197
.UnicodeString = L"Arduino Leonardo"
198198
#elif DEVICE_PID == 0x0037
199199
.UnicodeString = L"Arduino Micro "
200+
#elif DEVICE_PID == 0x003C
201+
.UnicodeString = L"Arduino Esplora "
200202
#else
201203
.UnicodeString = L"USB IO board "
202204
#endif

‎hardware/arduino/bootloaders/caterina/Descriptors.h

100755100644
File mode changed.

‎hardware/arduino/bootloaders/caterina/Makefile

100755100644
+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@
5757
# PID = 0x0036
5858
# official Micro PID
5959
# PID = 0x0037
60+
# official Esplora PID
61+
# PID = 0x003C
6062

6163
# MCU name
6264
MCU = atmega32u4

‎hardware/arduino/cores/arduino/USBCore.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ const u16 STRING_IPRODUCT[17] = {
5555
'A','r','d','u','i','n','o',' ','L','e','o','n','a','r','d','o'
5656
#elif USB_PID == 0x8037
5757
'A','r','d','u','i','n','o',' ','M','i','c','r','o',' ',' ',' '
58+
#elif USB_PID == 0x803C
59+
'A','r','d','u','i','n','o',' ','E','s','p','l','o','r','a',' '
5860
#elif USB_PID == 0x9208
5961
'L','i','l','y','P','a','d','U','S','B',' ',' ',' ',' ',' ',' '
6062
#else

‎libraries/Esplora/Esplora.cpp

+175
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
/*
2+
Esplora.cpp - Arduino Esplora board library
3+
Written by Enrico Gueli
4+
Copyright (c) 2012 Arduino(TM) All right reserved.
5+
6+
This library is free software; you can redistribute it and/or
7+
modify it under the terms of the GNU Lesser General Public
8+
License as published by the Free Software Foundation; either
9+
version 2.1 of the License, or (at your option) any later version.
10+
11+
This library is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14+
Lesser General Public License for more details.
15+
16+
You should have received a copy of the GNU Lesser General Public
17+
License along with this library; if not, write to the Free Software
18+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19+
*/
20+
21+
22+
#include "Esplora.h"
23+
24+
_Esplora Esplora;
25+
26+
/*
27+
* The following constants tell, for each accelerometer
28+
* axis, which values are returned when the axis measures
29+
* zero acceleration.
30+
*/
31+
const int ACCEL_ZERO_X = 320;
32+
const int ACCEL_ZERO_Y = 330;
33+
const int ACCEL_ZERO_Z = 310;
34+
35+
const byte MUX_ADDR_PINS[] = { A0, A1, A2, A3 };
36+
const byte MUX_COM_PIN = A4;
37+
38+
const int JOYSTICK_DEAD_ZONE = 100;
39+
40+
const byte RED_PIN = 5;
41+
const byte BLUE_PIN = 9;
42+
const byte GREEN_PIN = 10;
43+
44+
const byte BUZZER_PIN = 6;
45+
46+
// non-multiplexer Esplora pins:
47+
// Accelerometer: x-A5, y-A7, z-A6
48+
// External outputs: D3, D11
49+
// Buzzer: A8
50+
// RGB Led: red-D5, green-D10/A11, blue-D9/A10
51+
// Led 13: D13
52+
53+
const byte ACCEL_X_PIN = A5;
54+
const byte ACCEL_Y_PIN = A11;
55+
const byte ACCEL_Z_PIN = A6;
56+
57+
const byte LED_PIN = 13;
58+
59+
_Esplora::_Esplora() {
60+
for (byte p=0; p<4; p++) {
61+
pinMode(MUX_ADDR_PINS[p], OUTPUT);
62+
}
63+
pinMode(RED_PIN, OUTPUT);
64+
pinMode(GREEN_PIN, OUTPUT);
65+
pinMode(BLUE_PIN, OUTPUT);
66+
}
67+
68+
unsigned int _Esplora::readChannel(byte channel) {
69+
digitalWrite(MUX_ADDR_PINS[0], (channel & 1) ? HIGH : LOW);
70+
digitalWrite(MUX_ADDR_PINS[1], (channel & 2) ? HIGH : LOW);
71+
digitalWrite(MUX_ADDR_PINS[2], (channel & 4) ? HIGH : LOW);
72+
digitalWrite(MUX_ADDR_PINS[3], (channel & 8) ? HIGH : LOW);
73+
// workaround to cope with lack of pullup resistor on joystick switch
74+
if (channel == CH_JOYSTICK_SW) {
75+
pinMode(MUX_COM_PIN, INPUT_PULLUP);
76+
unsigned int joystickSwitchState = (digitalRead(MUX_COM_PIN) == HIGH) ? 1023 : 0;
77+
digitalWrite(MUX_COM_PIN, LOW);
78+
return joystickSwitchState;
79+
}
80+
else
81+
return analogRead(MUX_COM_PIN);
82+
}
83+
84+
boolean _Esplora::joyLowHalf(byte joyCh) {
85+
return (readChannel(joyCh) < 512 - JOYSTICK_DEAD_ZONE)
86+
? LOW : HIGH;
87+
}
88+
89+
boolean _Esplora::joyHighHalf(byte joyCh) {
90+
return (readChannel(joyCh) > 512 + JOYSTICK_DEAD_ZONE)
91+
? LOW : HIGH;
92+
}
93+
94+
boolean _Esplora::readButton(byte ch) {
95+
if (ch >= SWITCH_1 && ch <= SWITCH_4) {
96+
ch--;
97+
}
98+
99+
switch(ch) {
100+
case JOYSTICK_RIGHT:
101+
return joyLowHalf(CH_JOYSTICK_X);
102+
case JOYSTICK_LEFT:
103+
return joyHighHalf(CH_JOYSTICK_X);
104+
case JOYSTICK_UP:
105+
return joyLowHalf(CH_JOYSTICK_Y);
106+
case JOYSTICK_DOWN:
107+
return joyHighHalf(CH_JOYSTICK_Y);
108+
}
109+
110+
unsigned int val = readChannel(ch);
111+
return (val > 512) ? HIGH : LOW;
112+
}
113+
114+
void _Esplora::writeRGB(byte r, byte g, byte b) {
115+
writeRed(r);
116+
writeGreen(g);
117+
writeBlue(b);
118+
}
119+
120+
#define RGB_FUNC(name, pin, lastVar) \
121+
void _Esplora::write##name(byte val) { \
122+
if (val == lastVar) \
123+
return; \
124+
analogWrite(pin, val); \
125+
lastVar = val; \
126+
delay(5); \
127+
} \
128+
\
129+
byte _Esplora::read##name() { \
130+
return lastVar; \
131+
}
132+
133+
RGB_FUNC(Red, RED_PIN, lastRed)
134+
RGB_FUNC(Green, GREEN_PIN, lastGreen)
135+
RGB_FUNC(Blue, BLUE_PIN, lastBlue)
136+
137+
void _Esplora::tone(unsigned int freq) {
138+
if (freq > 0)
139+
::tone(BUZZER_PIN, freq);
140+
else
141+
::noTone(BUZZER_PIN);
142+
}
143+
144+
void _Esplora::tone(unsigned int freq, unsigned long duration) {
145+
if (freq > 0)
146+
::tone(BUZZER_PIN, freq, duration);
147+
else
148+
::noTone(BUZZER_PIN);
149+
}
150+
151+
void _Esplora::noTone() {
152+
::noTone(BUZZER_PIN);
153+
}
154+
155+
int _Esplora::readTemperature(const byte scale) {
156+
long rawT = readChannel(CH_TEMPERATURE);
157+
if (scale == DEGREES_C) {
158+
return (int)((rawT * 500 / 1024) - 50);
159+
}
160+
else if (scale == DEGREES_F) {
161+
return (int)((rawT * 450 / 512 ) - 58);
162+
}
163+
else {
164+
return readTemperature(DEGREES_C);
165+
}
166+
}
167+
168+
int _Esplora::readAccelerometer(const byte axis) {
169+
switch (axis) {
170+
case X_AXIS: return analogRead(ACCEL_X_PIN) - ACCEL_ZERO_X;
171+
case Y_AXIS: return analogRead(ACCEL_Y_PIN) - ACCEL_ZERO_Y;
172+
case Z_AXIS: return analogRead(ACCEL_Z_PIN) - ACCEL_ZERO_Z;
173+
default: return 0;
174+
}
175+
}

‎libraries/Esplora/Esplora.h

+163
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
/*
2+
Esplora.h - Arduino Esplora board library
3+
Written by Enrico Gueli
4+
Copyright (c) 2012 Arduino(TM) All right reserved.
5+
6+
This library is free software; you can redistribute it and/or
7+
modify it under the terms of the GNU Lesser General Public
8+
License as published by the Free Software Foundation; either
9+
version 2.1 of the License, or (at your option) any later version.
10+
11+
This library is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14+
Lesser General Public License for more details.
15+
16+
You should have received a copy of the GNU Lesser General Public
17+
License along with this library; if not, write to the Free Software
18+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19+
*/
20+
21+
#ifndef ESPLORA_H_
22+
#define ESPLORA_H_
23+
24+
#include "Arduino.h"
25+
26+
/*
27+
* The following constants are used internally by the Esplora
28+
* library code.
29+
*/
30+
31+
const byte JOYSTICK_BASE = 16; // it's a "virtual" channel: its ID won't conflict with real ones
32+
33+
const byte MAX_CHANNELS = 13;
34+
35+
const byte CH_SWITCH_1 = 0;
36+
const byte CH_SWITCH_2 = 1;
37+
const byte CH_SWITCH_3 = 2;
38+
const byte CH_SWITCH_4 = 3;
39+
const byte CH_SLIDER = 4;
40+
const byte CH_LIGHT = 5;
41+
const byte CH_TEMPERATURE = 6;
42+
const byte CH_MIC = 7;
43+
const byte CH_JOYSTICK_SW = 10;
44+
const byte CH_JOYSTICK_X = 11;
45+
const byte CH_JOYSTICK_Y = 12;
46+
47+
/*
48+
* The following constants can be used with the readButton()
49+
* method.
50+
*/
51+
52+
const byte SWITCH_1 = 1;
53+
const byte SWITCH_2 = 2;
54+
const byte SWITCH_3 = 3;
55+
const byte SWITCH_4 = 4;
56+
57+
const byte SWITCH_DOWN = SWITCH_1;
58+
const byte SWITCH_LEFT = SWITCH_2;
59+
const byte SWITCH_UP = SWITCH_3;
60+
const byte SWITCH_RIGHT = SWITCH_4;
61+
62+
const byte JOYSTICK_DOWN = JOYSTICK_BASE;
63+
const byte JOYSTICK_LEFT = JOYSTICK_BASE+1;
64+
const byte JOYSTICK_UP = JOYSTICK_BASE+2;
65+
const byte JOYSTICK_RIGHT = JOYSTICK_BASE+3;
66+
67+
/*
68+
* These constants can be use for comparison with the value returned
69+
* by the readButton() method.
70+
*/
71+
const boolean PRESSED = LOW;
72+
const boolean RELEASED = HIGH;
73+
74+
/*
75+
* The following constants can be used with the readTemperature()
76+
* method to specify the desired scale.
77+
*/
78+
const byte DEGREES_C = 0;
79+
const byte DEGREES_F = 1;
80+
81+
/*
82+
* The following constants can be used with the readAccelerometer()
83+
* method to specify the desired axis to return.
84+
*/
85+
const byte X_AXIS = 0;
86+
const byte Y_AXIS = 1;
87+
const byte Z_AXIS = 2;
88+
89+
90+
class _Esplora {
91+
private:
92+
byte lastRed;
93+
byte lastGreen;
94+
byte lastBlue;
95+
96+
unsigned int readChannel(byte channel);
97+
98+
boolean joyLowHalf(byte joyCh);
99+
boolean joyHighHalf(byte joyCh);
100+
101+
public:
102+
_Esplora();
103+
104+
/*
105+
* Returns a number corresponding to the position of the
106+
* linear potentiometer. 0 means full right, 1023 means
107+
* full left.
108+
*/
109+
inline unsigned int readSlider() { return readChannel(CH_SLIDER); }
110+
111+
/*
112+
* Returns a number corresponding to the amount of ambient
113+
* light sensed by the light sensor.
114+
*/
115+
inline unsigned int readLightSensor() { return readChannel(CH_LIGHT); }
116+
117+
/*
118+
* Returns the current ambient temperature, expressed either in Celsius
119+
* or Fahreneit scale.
120+
*/
121+
int readTemperature(const byte scale);
122+
123+
/*
124+
* Returns a number corresponding to the amount of ambient noise.
125+
*/
126+
inline unsigned int readMicrophone() { return readChannel(CH_MIC); }
127+
128+
inline unsigned int readJoystickSwitch() { return readChannel(CH_JOYSTICK_SW); }
129+
130+
inline int readJoystickX() {
131+
return readChannel(CH_JOYSTICK_X) - 512;
132+
}
133+
inline int readJoystickY() {
134+
return readChannel(CH_JOYSTICK_Y) - 512;
135+
}
136+
137+
int readAccelerometer(const byte axis);
138+
139+
/*
140+
* Reads the current state of a button. It will return
141+
* LOW if the button is pressed, and HIGH otherwise.
142+
*/
143+
boolean readButton(byte channel);
144+
145+
void writeRGB(byte red, byte green, byte blue);
146+
void writeRed(byte red);
147+
void writeGreen(byte green);
148+
void writeBlue(byte blue);
149+
150+
byte readRed();
151+
byte readGreen();
152+
byte readBlue();
153+
154+
void tone(unsigned int freq);
155+
void tone(unsigned int freq, unsigned long duration);
156+
void noTone();
157+
};
158+
159+
160+
161+
extern _Esplora Esplora;
162+
163+
#endif // ESPLORA_H_
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
/*
2+
Esplora Kart
3+
4+
This sketch turns the Esplora into a PC game pad.
5+
6+
It uses the both the analog joystick and the four switches.
7+
By moving the joystick in a direction or by pressing a switch,
8+
the PC will "see" that a key is pressed. If the PC is running
9+
a game that has keyboard input, the Esplora can control it.
10+
11+
The default configuration is suitable for SuperTuxKart, an
12+
open-source racing game. It can be downloaded from
13+
http://supertuxkart.sourceforge.net/ .
14+
15+
Created on 22 november 2012
16+
By Enrico Gueli <enrico.gueli@gmail.com>
17+
*/
18+
19+
20+
#include <Esplora.h>
21+
22+
/*
23+
You're going to handle eight different buttons. You'll use arrays,
24+
which are ordered lists of variables with a fixed size. Each array
25+
has an index (counting from 0) to keep track of the position
26+
you're reading in the array, and each position can contain a number.
27+
28+
This code uses three different arrays: one for the buttons you'll read;
29+
a second to hold the current states of those buttons; and a third to hold
30+
the keystrokes associated with each button.
31+
*/
32+
33+
/*
34+
This array holds the last sensed state of each of the buttons
35+
you're reading.
36+
Later in the code, you'll read the button states, and compare them
37+
to the previous states that are stored in this array. If the two
38+
states are different, it means that the button was either
39+
pressed or released.
40+
*/
41+
boolean buttonStates[8];
42+
43+
/*
44+
This array holds the names of the buttons being read.
45+
Later in the sketch, you'll use these names with
46+
the method Esplora.readButton(x), where x
47+
is one of these buttons.
48+
*/
49+
const byte buttons[] = {
50+
JOYSTICK_DOWN,
51+
JOYSTICK_LEFT,
52+
JOYSTICK_UP,
53+
JOYSTICK_RIGHT,
54+
SWITCH_RIGHT, // fire
55+
SWITCH_LEFT, // bend
56+
SWITCH_UP, // nitro
57+
SWITCH_DOWN, // look back
58+
};
59+
60+
/*
61+
This array tells what keystroke to send to the PC when a
62+
button is pressed.
63+
If you look at this array and the above one, you can see that
64+
the "cursor down" keystroke is sent when the joystick is moved
65+
down, the "cursor up" keystroke when the joystick is moved up
66+
and so on.
67+
*/
68+
const char keystrokes[] = {
69+
KEY_DOWN_ARROW,
70+
KEY_LEFT_ARROW,
71+
KEY_UP_ARROW,
72+
KEY_RIGHT_ARROW,
73+
' ',
74+
'V',
75+
'N',
76+
'B'
77+
};
78+
79+
/*
80+
This is code is run only at startup, to initialize the
81+
virtual USB keyboard.
82+
*/
83+
void setup() {
84+
Keyboard.begin();
85+
}
86+
87+
/*
88+
After setup() is finished, this code is run continuously.
89+
Here we continuously check if something happened with the
90+
buttons.
91+
*/
92+
void loop() {
93+
94+
// Iterate through all the buttons:
95+
for (byte thisButton=0; thisButton<8; thisButton++) {
96+
boolean lastState = buttonStates[thisButton];
97+
boolean newState = Esplora.readButton(buttons[thisButton]);
98+
if (lastState != newState) { // Something changed!
99+
/*
100+
The Keyboard library allows you to "press" and "release" the
101+
keys as two distinct actions. These actions can be
102+
linked to the buttons we're handling.
103+
*/
104+
if (newState == PRESSED) {
105+
Keyboard.press(keystrokes[i]);
106+
}
107+
else if (newState == RELEASED) {
108+
Keyboard.release(keystrokes[i]);
109+
}
110+
}
111+
112+
// Store the new button state, so you can sense a difference later:
113+
buttonStates[i] = newState;
114+
}
115+
116+
/*
117+
Wait a little bit (50ms) between a check and another.
118+
When a mechanical switch is pressed or released, the
119+
contacts may bounce very rapidly. If the check is done too
120+
fast, these bounces may be confused as multiple presses and
121+
may lead to unexpected behaviour.
122+
*/
123+
delay(50);
124+
}
125+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
Esplora LED Show
3+
4+
Makes the RGB LED bright and glow as the joystick or the
5+
slider are moved.
6+
7+
Created on 22 november 2012
8+
By Enrico Gueli <enrico.gueli@gmail.com>
9+
Modified 24 Nov 2012
10+
by Tom Igoe
11+
*/
12+
#include <Esplora.h>
13+
14+
void setup() {
15+
// initialize the serial communication:
16+
Serial.begin(9600);
17+
}
18+
19+
void loop() {
20+
// read the sensors into variables:
21+
int xAxis = Esplora.readJoystickX();
22+
int yAxis = Esplora.readJoystickY();
23+
int slider = Esplora.readSlider();
24+
25+
// convert the sensor readings to light levels:
26+
byte red = map(xAxis, -512, 512, 0, 255);
27+
byte green = map(xAxis, -512, 512, 0, 255);
28+
byte blue = slider/4;
29+
30+
// print the light levels:
31+
Serial.print(red);
32+
Serial.print(' ');
33+
Serial.print(green);
34+
Serial.print(' ');
35+
Serial.println(blue);
36+
37+
// write the light levels to the LED.
38+
Esplora.writeRGB(red, green, blue);
39+
40+
// add a delay to keep the LED from flickering:
41+
delay(10);
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
/*
2+
Esplora Led/Microphone
3+
4+
This simple sketch reads the microphone, light sensor, and slider.
5+
Then it uses those readings to set the brightness of red, green and blue
6+
channels of the RGB LED. The red channel will change with the loudness
7+
"heared" by the microphone, the green channel changes as the
8+
amount of light in the room and the blue channel will change
9+
with the position of the slider.
10+
11+
Created on 22 november 2012
12+
By Enrico Gueli <enrico.gueli@gmail.com>
13+
Modified 24 Nov 2012
14+
by Tom Igoe
15+
*/
16+
17+
#include <Esplora.h>
18+
19+
void setup() {
20+
// initialize the serial communication:
21+
Serial.begin(9600);
22+
}
23+
24+
int lowLight = 400; // the light sensor reading when it's covered
25+
int highLight = 1023; // the maximum light sensor reading
26+
int minGreen = 0; // minimum brightness of the green LED
27+
int maxGreen = 100; // maximum brightness of the green LED
28+
29+
void loop() {
30+
// read the sensors into variables:
31+
int mic = Esplora.readMicrophone();
32+
int light = Esplora.readLightSensor();
33+
int slider = Esplora.readSlider();
34+
35+
// convert the sensor readings to light levels:
36+
byte red = constrain(mic, 0, 255);
37+
byte green = constrain(
38+
map(light, lowLight, highLight, minGreen, maxGreen),
39+
0, 255);
40+
byte blue = slider/4;
41+
42+
// print the light levels (to see what's going on):
43+
Serial.print(red);
44+
Serial.print(' ');
45+
Serial.print(green);
46+
Serial.print(' ');
47+
Serial.println(blue);
48+
49+
// write the light levels to the LED.
50+
// note that the green value is always 0:
51+
Esplora.writeRGB(red, green, blue);
52+
53+
// add a delay to keep the LED from flickering:
54+
delay(10);
55+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
/*
2+
Esplora Music
3+
4+
This sketch turns the Esplora in a simple musical instrument.
5+
Press the Switch 1 and move the slider to see how it works.
6+
7+
Created on 22 november 2012
8+
By Enrico Gueli <enrico.gueli@gmail.com>
9+
modified 24 Nov 2012
10+
by Tom Igoe
11+
*/
12+
13+
14+
#include <Esplora.h>
15+
16+
17+
const int note[] = {
18+
262, // C
19+
277, // C#
20+
294, // D
21+
311, // D#
22+
330, // E
23+
349, // F
24+
370, // F#
25+
392, // G
26+
415, // G#
27+
440, // A
28+
466, // A#
29+
494, // B
30+
523 // C next octave
31+
};
32+
33+
void setup() {
34+
}
35+
36+
void loop() {
37+
// read the button labeled SWITCH_DOWN. If it's low,
38+
// then play a note:
39+
if (Esplora.readButton(SWITCH_DOWN) == LOW) {
40+
int slider = Esplora.readSlider();
41+
42+
// use map() to map the slider's range to the
43+
// range of notes you have:
44+
byte thisNote = map(slider, 0, 1023, 0, 13);
45+
// play the note corresponding to the slider's position:
46+
Esplora.tone(note[thisNote]);
47+
}
48+
else {
49+
// if the button isn't pressed, turn the note off:
50+
Esplora.noTone();
51+
}
52+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/*
2+
Esplora Slave
3+
4+
This sketch allows to test all the Esplora's peripherals.
5+
It is also used with the ProcessingStart sketch (for Processing).
6+
7+
When uploaded, you can open the Serial monitor and write one of
8+
the following commands (without quotes) to get an answer:
9+
10+
"D": prints the current value of all sensors, separated by a comma.
11+
See the dumpInputs() function below to get the meaning of
12+
each value.
13+
14+
"Rxxx"
15+
"Gxxx"
16+
"Bxxx": set the color of the RGB led. For example, write "R255"
17+
to turn on the red to full brightness, "G128" to turn
18+
the green to half brightness, or "G0" to turn off
19+
the green channel.
20+
21+
"Txxxx": play a tone with the buzzer. The number is the
22+
frequency, e.g. "T440" plays the central A note.
23+
Write "T0" to turn off the buzzer.
24+
25+
26+
Created on 22 november 2012
27+
By Enrico Gueli <enrico.gueli@gmail.com>
28+
*/
29+
30+
#include <Esplora.h>
31+
32+
void setup() {
33+
while(!Serial); // needed for Leonardo-based board like Esplora
34+
Serial.begin(9600);
35+
}
36+
37+
void loop() {
38+
if (Serial.available())
39+
parseCommand();
40+
}
41+
42+
/*
43+
* This function reads a character from the serial line and
44+
* decide what to do next. The "what to do" part is given by
45+
* function it calls (e.g. dumpInputs(), setRed() and so on).
46+
*/
47+
void parseCommand() {
48+
char cmd = Serial.read();
49+
switch(cmd) {
50+
case 'D': dumpInputs(); break;
51+
case 'R': setRed(); break;
52+
case 'G': setGreen(); break;
53+
case 'B': setBlue(); break;
54+
case 'T': setTone(); break;
55+
}
56+
}
57+
58+
void dumpInputs() {
59+
/*
60+
* please note: a single row contains two instructions.
61+
* one is to print the sensor value, the other to print the
62+
* comma symbol.
63+
*/
64+
Serial.print(Esplora.readButton(SWITCH_1)); Serial.print(',');
65+
Serial.print(Esplora.readButton(SWITCH_2)); Serial.print(',');
66+
Serial.print(Esplora.readButton(SWITCH_3)); Serial.print(',');
67+
Serial.print(Esplora.readButton(SWITCH_4)); Serial.print(',');
68+
Serial.print(Esplora.readSlider()); Serial.print(',');
69+
Serial.print(Esplora.readLightSensor()); Serial.print(',');
70+
Serial.print(Esplora.readTemperature(DEGREES_C)); Serial.print(',');
71+
Serial.print(Esplora.readMicrophone()); Serial.print(',');
72+
Serial.print(Esplora.readJoystickSwitch()); Serial.print(',');
73+
Serial.print(Esplora.readJoystickX()); Serial.print(',');
74+
Serial.print(Esplora.readJoystickY()); Serial.print(',');
75+
Serial.print(Esplora.readAccelerometer(X_AXIS)); Serial.print(',');
76+
Serial.print(Esplora.readAccelerometer(Y_AXIS)); Serial.print(',');
77+
Serial.print(Esplora.readAccelerometer(Z_AXIS)); Serial.println();
78+
}
79+
80+
void setRed() {
81+
Esplora.writeRed(Serial.parseInt());
82+
}
83+
84+
void setGreen() {
85+
Esplora.writeGreen(Serial.parseInt());
86+
}
87+
88+
void setBlue() {
89+
Esplora.writeBlue(Serial.parseInt());
90+
}
91+
92+
void setTone() {
93+
Esplora.tone(Serial.parseInt());
94+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,219 @@
1+
/*
2+
Esplora Table
3+
4+
Acts like a keyboard that prints some of its sensors'
5+
data in a table-like text, row by row.
6+
It is a sort of "data-logger".
7+
8+
At startup, it does nothing. It just waits for you to open a
9+
spreadsheet (e.g. Google Drive spreadsheet) so it can put its
10+
data. Then, by pressing Switch 1, it starts printing the table
11+
headers and the first row of data. It waits a bit, then it
12+
will print another row, and so on.
13+
14+
The amount of time between each row is given by the slider.
15+
If put to full left, the sketch will wait 10 seconds; at
16+
full right position, it will wait 5 minutes. An intermediate
17+
position will make the sketch wait for some time in-between.
18+
19+
Clicking the Switch 1 at any time will stop the logging.
20+
21+
The color LED shows what the sketch is doing:
22+
blue = idle, waiting for you to press Switch 1 to start logging
23+
green = active; will print soon
24+
red = printing data to the PC
25+
26+
Created on 22 november 2012
27+
By Enrico Gueli <enrico.gueli@gmail.com>
28+
modified 24 Nov 2012
29+
by Tom Igoe
30+
*/
31+
32+
#include <Esplora.h>
33+
34+
/*
35+
* this variable tells if the data-logging is currently active.
36+
*/
37+
boolean active = false;
38+
39+
/*
40+
* this variable holds the time in the future when the sketch
41+
* will "sample" the data (sampling is the act of reading some
42+
* input at a known time). This variable is checked continuously
43+
* against millis() to know when it's time to sample.
44+
*/
45+
unsigned long nextSampleAt = 0;
46+
47+
/*
48+
* This variable just holds the millis() value at the time the
49+
* logging was activated. This is needed to enter the correct
50+
* value in the "Time" column in the printed table.
51+
*/
52+
unsigned long startedAt = 0;
53+
54+
55+
/*
56+
* when the "active" variable is set to true, the same is done
57+
* with this variable. This is needed because the code that does
58+
* the "just-after-activation" stuff is run some time later than
59+
* the code that says "be active now".
60+
*/
61+
boolean justActivated = false;
62+
63+
64+
/*
65+
* this variable holds the last sensed status of the switch press
66+
* button. If the code sees a difference between the value of
67+
* this variable and the current status of the switch, it means
68+
* that the button was either pressed or released.
69+
*/
70+
boolean lastStartBtn = HIGH;
71+
72+
/*
73+
* Initialization code. The virtual USB keyboard must be
74+
* initialized; the Serial class is needed just for debugging.
75+
*/
76+
void setup() {
77+
Keyboard.begin();
78+
Serial.begin(9600);
79+
}
80+
81+
/*
82+
* This code is run continuously.
83+
*/
84+
void loop() {
85+
/*
86+
* note: we don't use Arduino's delay() here, because we can't
87+
* normally do anything while delaying. Our own version lets us
88+
* check for button presses often enough to not miss any event.
89+
*/
90+
activeDelay(50);
91+
92+
/*
93+
* the justActivated variable may be set to true in the
94+
* checkSwitchPress() function. Here we check its status to
95+
* print the table headers and configure what's needed to.
96+
*/
97+
if (justActivated == true) {
98+
justActivated = false; // do this just once
99+
printHeaders();
100+
// do next sampling ASAP
101+
nextSampleAt = startedAt = millis();
102+
}
103+
104+
if (active == true) {
105+
if (nextSampleAt < millis()) {
106+
// it's time to sample!
107+
int slider = Esplora.readSlider();
108+
// the row below maps the slider position to a range between
109+
// 10 and 290 seconds.
110+
int sampleInterval = map(slider, 0, 1023, 10, 290);
111+
nextSampleAt = millis() + sampleInterval * 1000;
112+
113+
logAndPrint();
114+
}
115+
116+
// let the RGB led blink green once per second, for 200ms.
117+
unsigned int ms = millis() % 1000;
118+
if (ms < 200)
119+
Esplora.writeGreen(50);
120+
else
121+
Esplora.writeGreen(0);
122+
123+
Esplora.writeBlue(0);
124+
}
125+
else
126+
// while not active, keep a reassuring blue color coming
127+
// from the Esplora...
128+
Esplora.writeBlue(20);
129+
130+
}
131+
132+
/*
133+
* Print the table headers.
134+
*/
135+
void printHeaders() {
136+
Keyboard.print("Time");
137+
Keyboard.write(KEY_TAB);
138+
activeDelay(300); // Some spreadsheets are slow, e.g. Google
139+
// Drive that wants to save every edit.
140+
Keyboard.print("Accel X");
141+
Keyboard.write(KEY_TAB);
142+
activeDelay(300);
143+
Keyboard.print("Accel Y");
144+
Keyboard.write(KEY_TAB);
145+
activeDelay(300);
146+
Keyboard.print("Accel Z");
147+
Keyboard.println();
148+
activeDelay(300);
149+
}
150+
151+
void logAndPrint() {
152+
// do all the samplings at once, because keystrokes have delays
153+
unsigned long timeSecs = (millis() - startedAt) /1000;
154+
int xAxis = Esplora.readAccelerometer(X_AXIS);
155+
int yAxis = Esplora.readAccelerometer(Y_AXIS);
156+
int zAxis = Esplora.readAccelerometer(Z_AXIS);
157+
158+
Esplora.writeRed(100);
159+
160+
Keyboard.print(timeSecs);
161+
Keyboard.write(KEY_TAB);
162+
activeDelay(300);
163+
Keyboard.print(xAxis);
164+
Keyboard.write(KEY_TAB);
165+
activeDelay(300);
166+
Keyboard.print(yAxis);
167+
Keyboard.write(KEY_TAB);
168+
activeDelay(300);
169+
Keyboard.print(zAxis);
170+
Keyboard.println();
171+
activeDelay(300);
172+
Keyboard.write(KEY_HOME);
173+
174+
Esplora.writeRed(0);
175+
}
176+
177+
/**
178+
* Similar to delay(), but allows to do something else
179+
* in the meanwhile. In particular, it calls waitLoop().
180+
* Note 1: it may wait longer than the specified amount, not less;
181+
* Note 2: beware of data synchronization issues, e.g. if the
182+
* whileWaiting() function alters some variables used by the
183+
* caller of this function.
184+
*
185+
* I discovered by chance that there's an ongoing discussion about
186+
* adding yield() in the Arduino API:
187+
* http://comments.gmane.org/gmane.comp.hardware.arduino.devel/1381
188+
* The purpose is the same, but for now I'm using this implementation.
189+
*/
190+
void activeDelay(unsigned long amount) {
191+
unsigned long at = millis() + amount;
192+
while (millis() < at) {
193+
checkSwitchPress();
194+
}
195+
}
196+
197+
/*
198+
* This function reads the status of the switch; if it sees that
199+
* it was pressed, toggles the status of the "active" variable.
200+
* If it's set to true, also the justActivated variable is set to
201+
* true, so the loop() function above can do the right things.
202+
* This function should be called as often as possible and do as
203+
* little as possible, because it can be called while another
204+
* function is running.
205+
*/
206+
void checkSwitchPress() {
207+
boolean startBtn = Esplora.readButton(SWITCH_DOWN);
208+
209+
if (startBtn != lastStartBtn) {
210+
if (startBtn == HIGH) { // button released
211+
active = !active;
212+
if (active)
213+
justActivated = true;
214+
}
215+
216+
lastStartBtn = startBtn;
217+
}
218+
}
219+

‎libraries/Esplora/keywords.txt

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
#######################################
2+
# Syntax Coloring Map For Esplora
3+
#######################################
4+
# Class
5+
#######################################
6+
7+
Esplora KEYWORD3
8+
9+
#######################################
10+
# Methods and Functions
11+
#######################################
12+
13+
begin KEYWORD2
14+
readSlider KEYWORD2
15+
readLightSensor KEYWORD2
16+
readTemperature KEYWORD2
17+
readMicrophone KEYWORD2
18+
readJoystickSwitch KEYWORD2
19+
readJoystickX KEYWORD2
20+
readJoystickY KEYWORD2
21+
readAccelerometer KEYWORD2
22+
readButton KEYWORD2
23+
writeRGB KEYWORD2
24+
writeRed KEYWORD2
25+
writeGreen KEYWORD2
26+
writeBlue KEYWORD2
27+
readRed KEYWORD2
28+
readGreen KEYWORD2
29+
readBlue KEYWORD2
30+
tone KEYWORD2
31+
noTone KEYWORD2
32+
33+
34+
#######################################
35+
# Constants
36+
#######################################
37+
38+
JOYSTICK_BASE LITERAL1
39+
MAX_CHANNELS LITERAL1
40+
CH_SWITCH_1 LITERAL1
41+
CH_SWITCH_2 LITERAL1
42+
CH_SWITCH_3 LITERAL1
43+
CH_SWITCH_4 LITERAL1
44+
CH_SLIDER LITERAL1
45+
CH_LIGHT LITERAL1
46+
CH_TEMPERATURE LITERAL1
47+
CH_MIC LITERAL1
48+
CH_JOYSTICK_SW LITERAL1
49+
CH_JOYSTICK_X LITERAL1
50+
CH_JOYSTICK_Y LITERAL1
51+
SWITCH_1 LITERAL1
52+
SWITCH_2 LITERAL1
53+
SWITCH_3 LITERAL1
54+
SWITCH_4 LITERAL1
55+
SWITCH_DOWN LITERAL1
56+
SWITCH_LEFT LITERAL1
57+
SWITCH_UP LITERAL1
58+
SWITCH_RIGHT LITERAL1
59+
JOYSTICK_DOWN LITERAL1
60+
JOYSTICK_LEFT LITERAL1
61+
JOYSTICK_UP LITERAL1
62+
PRESSED LITERAL1
63+
RELEASED LITERAL1
64+
DEGREES_C LITERAL1
65+
DEGREES_F LITERAL1
66+
X_AXIS LITERAL1
67+
Y_AXIS LITERAL1
68+
Z_AXIS LITERAL1

0 commit comments

Comments
 (0)
Please sign in to comment.