Integral Design
Archive for category Embedded Microcontrollers
.NET Gadgeteer Motor Driver con due motori e un potenziometro (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on April 4, 2012
By Mike Dodaro, translated by Marco Minerva from the original English version In un post precedente ho descritto come usare un potenziometro con il modulo GHI Electronics Motor Driver L298 module. Questo esempio collega due motori al driver, i quali fanno muovere delle semplici parti meccaniche, come mostrato nel video seguente. Ci sono due bottoni che avviano e fermano i […]
Controllare un motore con .NET Gadgeteer e un potenziometro (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on April 4, 2012
By Mike Dodaro, translated by Marco Minerva from the original English version Il modulo GHI Electronics Motor Driver L298 fornisce un metodo per impostare la velocità di due motori che possono funzionare contemporaneamente: MoveMotor(Gadgeteer.Modules.GHIElectronics.MotorControllerL298.Motor _motorSide, int _newSpeed). C’è anche un metodo per aumentare la velocità in un certo intervallo di tempo: MoveMotorRampNB(Gadgeteer.Modules.GHIElectronics.MotorControllerL298.Motor _motorSide, int _newSpeed, int _rampingDelayMilli). Questi […]
.NET Gadgeteer, gadgets, Motor Control, MotorDriverL298, potentiometer, Timer
Eduardo Velloso completes Beta Driver for .NET Gadgeteer Bluetooth Module
Posted by Michael Dodaro in Embedded Microcontrollers on April 3, 2012
Since the Bluetooth Module was released by GHI Electronics there have been numerous users who have found it difficult. The starter driver was rudimentary. Windows and other devices could not discover it or connect to it unless a developer who knew a lot about Bluetooth protocols implemented the Gadgeteer device. The references available were manufacturer specifications. GHI Electronics invited the community to […]
Saving settings to XML Configuration Files
Posted by Marco Minerva in Embedded Microcontrollers on March 25, 2012
Posted by Marco Minerva Some times ago I published a class that allows to read XML Configurtion Files (.config) in the standard .NET format. Now, I am asked how to change and save these settings back to file. So, I have updated the ConfigurationManager class to support these new features. There are two new methods: […]
.NET Gadgeteer, .NET Micro Framework Configuration Files, Storage
.NET Gadgeteer Relay Actuator via REST Web Service
Posted by Michael Dodaro in Embedded Microcontrollers, REST Web Services on March 23, 2012
The .NET Gadgeteer Relay Module from Seeed Studio can be used to activate devices that are designed to run on common household electrical circuits of 120 volts AC or higher if necessary. The four relays on the Seeed Relay Module are switches with the options, normally open or normally closed. You can power on or power off […]
.NET Gadgeteer, .NET Micro Framework, GHI Electronics Wifi RS21 module, remote control, REST Web Service, Seeed Studio Relay Module
.NET Gadgeteer Motor Driver with Two Motors and Potentiometer
Posted by Michael Dodaro in Embedded Microcontrollers on March 21, 2012
An earlier post describes how to use a potentiometer with the GHI Electronics Motor Driver L298 module. This example connects two motors to the motor controller, and the motors run simple mechanical parts, as shown in the following video. There are two buttons that start and stop the separate motors, and a potentiometer controls the speed of […]
.NET Gadgeteer Motor Control with Potentiometer
Posted by Michael Dodaro in Embedded Microcontrollers on March 19, 2012
The GHI Electronics Motor Driver L298 Module provides a method for setting the speed of the two motors it can operate concurrently: MoveMotor(Gadgeteer.Modules.GHIElectronics.MotorControllerL298.Motor _motorSide, int _newSpeed). There is also a method that will ramp up the speed over a time interval: MoveMotorRampNB(Gadgeteer.Modules.GHIElectronics.MotorControllerL298.Motor _motorSide, int _newSpeed, int _rampingDelayMilli). These methods work pretty much as you would expect after […]
.NET Gadgeteer, gadgets, Motor Control, MotorDriverL298, Potentiomenter, Timer
Vijay Kumar on Flying Robots
Posted by Michael Dodaro in Embedded Microcontrollers on March 16, 2012
Here’s a TED talk and demo that could help us imagine some exciting .NET Gadgeteer projects. Link to original video on TED. See also Devhammer’s Den (infrared) LED array used with .NET Gadgeteer to control an IR remote control helicopter.
Saving Sensor Data as Comma Separated Values (csv) on the SD Card
Posted by Michael Dodaro in Embedded Microcontrollers on March 15, 2012
Data is often persisted in text files as comma separated values. This kind of data can be viewed and analyzed by Microsoft Excel or other spreadsheet software. Applications based on the .NET Micro Framework and .NET Gadgeteer can easily save data in this format using a module such as the GHI Electronics SD Card module. […]
.NET Gadgeteer, comma separated values, relay circuit, SD card storage
Controlling Text-To-Speech from a client application
Posted by Marco Minerva in Embedded Microcontrollers on March 11, 2012
Posted by Marco Minerva Some times ago I talked about my library that allows to add Text-To-Speech capabilities to a .NET Gadgeteer application. In that occasion, we saw an example in which the text to speak was directly included into the application. But we can do something more interesting. Using the network features of .NET […]
Posture Regulator with LED Alert – Silent
Posted by Michael Dodaro in Embedded Microcontrollers on March 10, 2012
This is a second iteration on the device using a Seeed accelerometer as posture sensor that sends alerts when the user’s posture lapses from the position desirable for working extended periods in the seated position. The previous version used a buzzer on a relay circuit as an alert. It produced a sound that could drive one to distraction. This version uses a LED that simply […]
.NET Gadgeteer WPF, .NET Micro Framework, accelerometer, gadgets, notifications, Posture Sensor
Posture Regulator using .NET Gadgeteer Accelerometer from Seeed Studio
Posted by Michael Dodaro in Embedded Microcontrollers on March 9, 2012
People who work in technology often spend many hours at the computer, which can make it difficult to maintain good posture. I’ve been advised by a physical therapist to keep my chest high with my head and neck upright. The problem is that fatigue tends to make me slouch. Then my neck is out of alignment, […]
.NET Gadgeteer, accelerometer, relay circuit, Seeed Studio modules
New version of Text-To-Speech library
Posted by Marco Minerva in Embedded Microcontrollers on February 26, 2012
Posted by Marco Minerva Some weeks ago I talked about my library for Text-To-Speech with .NET Micro Framework. In the mean time, The Microsoft Translator Service, that I use in my library, has been moved to Azure and has been enhanced with new features. Now it is able to return streams in both WAV and […]
How to Initialize the .NET Gadgeteer WiFi Networking Module
Posted by Michael Dodaro in Embedded Microcontrollers, REST Web Services on February 23, 2012
Initializing the GHI Electronics WiFi RS21 module involves some different issues than initializing the Ethernet_J11D Module. It took several runs to get my WiFi module working. I don’t know all the permutations of WiFi networking, so I used a trial-and-error approach. First, I plugged in the WiFi_RS21 module and added start-up code, equivalent to what I have been using with my ethernet module, […]
GHI Electronics Music Module Play method using FileStream or MemoryStream
Posted by Michael Dodaro in Embedded Microcontrollers, Internet Media on February 15, 2012
If you have used the GHI Electronics Music Module, you have probably noticed that audio files larger than 600 K run out of memory and throw an exception. The current driver implements a Play method that does not support playing audio from a FileStream or MemoryStream. The existing method takes a byte[] array parameter that requires the entire file to be loaded in […]
boender, byte array, driver implementation, filestream, music module, template code
GPS Module for .NET Gadgeteer by Seeed Studio
Posted by Michael Dodaro in Embedded Microcontrollers on February 6, 2012
It may be helpful to discuss a few details about the initialization and output of the Seeed GPS Module for .NET Gadgeteer. The first time I tried to use this module, I wasn’t patient enough to let the device initialize and start producing data. This example uses the Seeed GPS Module and prints to the Debug output window of Visual Studio. Add the GPS […]
Text-To-Speech for .NET Micro Framework
Posted by Marco Minerva in Embedded Microcontrollers on January 21, 2012
Posted by Marco Minerva I’m very interested in the possibility of making my applications speak. So, I have realized a library for .NET Micro Framework that uses Microsoft Translator to obtain streams of wave-file speaking text in the desired language. At this moment, there are 44 supported languages, including English, Italian, German, French, Spanish, Japanese […]
Text-To-Speech per .NET Micro Framework (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on January 21, 2012
Inviato da Marco Minerva Sono sempre stato appassionato dalla possibilità di far parlare le mie applicazioni. Ho così realizzato una libreria per .NET Micro Framework che sfrutta Microsoft Translator per ottenere uno stream contenente il parlato del testo che è stato inviato al servizio tramite una chiamata REST. Attualmente, sono supportate ben 44 lingue, tra […]
Modulo Seeed Cellular Radio per .NET Gadgeteer (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on January 13, 2012
By Mike Dodaro, translated by Marco Minerva from the original English version Il driver per il modulo Cellular Radio di Seeed Studio è ancora in fase di sviluppo, quindi il codice che lavora con esso non è deve essere considerato definitivo. Detto questo, per usare questo modulo per effettuare chiamate vocali è necessario solo conoscere la sintassi […]
Seeed Cellular Radio Module for .NET Gadgeteer
Posted by Michael Dodaro in Embedded Microcontrollers on January 12, 2012
The drivers for the Cellular Radio module from Seeed Studio are still in development, so any code using this module has to be tentative at this stage. << Note: the new driver by Eduardo Velloso has now been released: Drivers for the .NET Gadgeteer Cellular Radio Module.>> That said, using the module for voice calling requires only a little information about […]
-
You are currently browsing the archives for the Embedded Microcontrollers category.
Recent Posts
- Bing Search API
- Playing with Mountaineer Ethernet Mainboard
- Gadgeteer Home Automation System
- Using voice commands to control a servo
- Creating an UDP Server with .NET Gadgeteer
- Wi-Fi Gadgeteer Robot controlled by Windows Phone with image streaming
- Controlling a Light Switch using Windows Phone
- Connessioni XBee con device .NET Gadgeteer (Italiano)
- .NET Gadgeteer event in Pisa, Italy
- Utilizzare Mayhem con .NET Gadgeteer (Italiano)
- Making Mayhem with .NET Gadgeteer
- XBee Control of .NET Gadgeteer Robot
- me-bot: Gadgeteer Avatar Robot
- Using XBee Radios with .NET Gadgeteer and the XBeeClient Libraries
- Autonomous Builders, Makers, and Shakers
- Constructing a Bluetooth controlled Robot
- .NET Gadgeteer Bluetooth to Control Relay Circuits
- XBee Radios in .NET Gadgeteer Devices
- Controlling a Gadgeteer device using Bluetooth Module and 32feet.NET library
- Mind Control of .NET Gadgeteer Device via Neurosky EEG Sensor
Archives
- February 2018 (1)
- October 2012 (1)
- September 2012 (1)
- August 2012 (1)
- July 2012 (5)
- June 2012 (4)
- May 2012 (4)
- April 2012 (7)
- March 2012 (10)
- February 2012 (4)
- January 2012 (6)
- December 2011 (16)
- November 2011 (19)
- October 2011 (11)
Blogroll
- .NET Micro Framework and .NET Gadgeteer; CMAP Code Camp Videos
- 3 AM Code *** New ***
- Around and About the .NET World (In Italiano)
- Dev Hammer's Den
- Eduardo Velloso
- El Bruno
- Gadgeteering
- GOTO Loop
- Pete Brown: Getting Started with .NET Gadgeteer part 2
- REST Web Services by Satish
- Use Gadgeteer Interfaces Directly from Application
- Windows Embedded Annotations
Links
- .NET Gadgeteer Open Source Platform
- .NET Gadgeteer Origin
- .NET Gadgeteer Resources
- .NET Micro Framework
- 3 AM Code *** New ***
- Amazon EC2 Authentication
- C# REST Client for Amazon Route 53
- Dev Hammer's Den
- El Bruno
- Gadgeteering
- IIS Silverlight Smooth Streaming Code Samples
- IIS Smooth Streaming
- Upload files using a WCF REST Service
- Windows Embedded Annotations
Categories
- Articoli in Italiano (24)
- Embedded Microcontrollers (88)
- Internet Media (4)
- REST Web Services (23)