You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/03.nano/carriers/nano-connector-carrier/tutorials/getting-started-nano-connector-carrier/content.md
@@ -98,7 +98,7 @@ The Grove connector uses a 4-pin DIP-2.0 mm connector (P/N: 114020164) with four
98
98
99
99
With the standardized pinouts mentioned, using Groove connectors eliminates the need for soldering or breadboarding and simplifies connecting various and different sensors, actuators and displays to your Nano family board.
100
100
101
-
#### Micro SD Card Slot
101
+
#### MicroSD Card Slot
102
102
103
103
The Nano Connector Carrier includes an onboard microSD card slot for projects requiring data logging or file storage.
104
104
@@ -136,39 +136,37 @@ The board's connectors are mapped to specific Nano family pins, making it straig
136
136
137
137
## What to Do Next?
138
138
139
-
I'll add a snippet of the code to your section:
140
-
141
-
## What to Do Next?
142
-
143
139
### Example Project: Teamometer
144
140
145
141
The Teamometer demonstrates how different Modulino sensor modules can work together to solve a real-world problem. This project combines temperature sensing, LED visual feedback, button interaction and audio alerts to create a smart tea temperature monitor. It's a fun way to see how easily the Nano Connector Carrier can connect to different sensors and modules simultaneously, giving you visual cues, sounds and temperature readings in a straightforward project, even with different connectors.
The temperature information will be displayed on the serial console and the Modulino Pixels. As your tea cools, fewer LEDs will light up, and the colors will change from red (very hot) through violet, white, and green, to blue (cool). When your tea reaches the perfect drinking temperature, the buzzer will tell you it is ready.
323
321
322
+
Keep in mind that because the sensor is designed for atmospheric temperature monitoring you might have to tinker the values a bit(depending on your setup) as the measurment will not be as accurate measuring a different medium.
323
+
324
324
### Example Project: Motion Logger
325
325
326
326
The Motion Tracker demonstrates how the Nano Connector Carrier can integrate with the Movement sensor to record motion data. This project showcases real-time motion sensing, button control and data logging to create a portable motion capture system that can be used for activity tracking, sports analysis or interactive projects.
1. Connect the Modulino Movement and Buttons modules to your Nano Connector Carrier
@@ -341,14 +345,14 @@ The Motion Tracker demonstrates how the Nano Connector Carrier can integrate wit
341
345
7. Press button A again to stop recording
342
346
343
347
**Example sketch:**
344
-
```ARDUINO
348
+
```arduino
345
349
/*
346
350
* Modulino Movement Logger
347
351
*
348
352
* Records movement data from a Modulino Movement sensor to an SD card.
349
353
* Press Button A to start/stop recording.
350
354
*/
351
-
#include "Modulino.h"
355
+
#include "Arduino_Modulino.h"
352
356
#include <SD.h>
353
357
354
358
// Create objects for the modules
@@ -499,9 +503,140 @@ void loop() {
499
503
delay(50);
500
504
}
501
505
```
502
-
503
506
The Motion Tracker continuously reads acceleration and orientation data from the Modulino Movement, displaying it in real-time on the Arduino IDE Serial Monitor. When recording is activated, the data is saved to a CSV file on the microSD card, creating a detailed motion profile that can be analyzed later in a spreadsheet or data visualization tools. This project is perfect for capturing movement patterns, analyzing sports techniques or creating interactive motion-controlled devices.
504
507
508
+
### Example Project: Enclosure Monitor in MicroPython
509
+
510
+
The Enclosure Monitor demonstrates how MicroPython and Modulino modules can work together to create a smart environmental monitoring system. This project uses temperature sensing and LED visual feedback to monitor conditions inside an enclosure, like a terrarium, server cabinet, or food storage area. It logs data over time while providing immediate visual indicators if temperatures fall outside the ideal range.
511
+
Note that the temperature settings can be changed to your specific use-case.
512
+
513
+
To get started with MicroPython and install the Modulino library on your Arduino board, follow the official guide [here](https://docs.arduino.cc/micropython/modulinos/installation/). This guide will walk you through installing both MicroPython and the necessary Modulino libraries to work with your modules.
The Enclosure Monitor provides immediate visual feedback about environmental conditions through the Modulino Pixels. LEDs glow BLUE when it's too cold, GREEN when the temperature is in the ideal range, and RED when it's too hot. The number of illuminated LEDs indicates where the temperature falls within each range - more LEDs light up as temperature increases.
638
+
639
+
Temperature and humidity readings are displayed in real time on the serial monitor and logged to a CSV file on the internal storage. This data can be retrieved later for analysis of environmental trends over time.
505
640
506
641
Now that you understand the features of the Nano Connector Carrier, here are some exciting project ideas to get you started:
0 commit comments