Integral Design
Posts Tagged .NET Gadgeteer
Cercare file su una memory card SD (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on December 8, 2011
.NET Gadgeteer mette a disposizione una comoda API per interagire con le memory card SD collegate alla scheda attraverso il modulo SD Card: è possibile recuperare la lista dei file, delle directory, creare cartelle, leggere e scrivere file. Manca però un metodo che restituisca solo i file con una certa estensione. Vediamo quindi come aggiungere […]
Il Designer di .NET Gadgeteer (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on December 7, 2011
By Mike Dodaro, translated by Marco Minerva from the original version in English. Il Designer di .NET Gadgeteer per Visual Studio permette di assemblare graficamente i componenti del sistema Gadgeteer. Questo esempio mostra alcuni dei moduli .NET Gadgeteer inclusi nel GHI Electronics FEZ Spider Starter Kit, che comprende una scheda FEZ Spider con processore ARM7. […]
Un Server TCP con .NET Gadgeteer (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers, REST Web Services on December 5, 2011
.NET Gadgeteer offre un metodo molto semplice per creare un web server in grado di rispondere alle richieste GET, attraverso la funzione SetupWebEvent fornita dall’API del modulo Ethernet di GHI Electronics. Esempi di tale sistema sono disponibili su questo stesso blog, ad esempio nel post .NET Gadgeteer Web Services; Picture, Audio, Application. Se, invece, lavoriamo […]
Web Service REST per registrare dati da un sensore .NET Gadgeteer (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers, REST Web Services on December 1, 2011
Translated by Marco Minerva from the English version by Michael Dodaro Questo esempio mostra come inviare messaggi da un’applicazione .NET Gadgeteer verso un Web service REST che registra i dati sull’attivazione di un sensore. In questo caso il sensore è il Light Sensor implementato in uno dei precedenti post. Il messaggio è semplicemente un identificativo […]
A ProgressBar for .NET Gadgeteer (English)
Posted by Michael Dodaro in Embedded Microcontrollers on November 29, 2011
English translation by Mike Dodaro of Italian version by Marco Minerva. As pointed out in a previous post, the graphical controls that ship with .NET Gadgeteer can be used to create more complex objects. Today we see how to implement a ProgressBar that displays the progress of an operation, as shown in the following video. The code that supports this scenario […]
Un pulsante di comando per .NET Gadgeteer (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on November 28, 2011
Continua la nostra rassegna dei controlli grafici per il display del .NET Gadgeteer (An English translation is available). Questa volta ci occupiamo del CommandButton, ovvero il classico pulsante di comando. Il codice della classe relativa è il seguente: Il CommandButton eredita da Border e definisce quattro proprietà, con cui è possibile specificare il colore del […]
Implementare un modulo di tipo Light Sensor con .NET Gadgeteer (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on November 27, 2011
by Mike Dodaro (translated from English by Marco Minerva) Questo esempio mostra come realizzare un modulo di .NET Gadgeteer utilizzando un fototransitor ad infrarossi e una resistenza pull-up di 10 kilo ohm. La connessione con tale hardware è effettuata attraverso il GHI Electronics Extender Module. L’output attiva una logica binaria su un pin digitale di […]
Utilizzare Camera, Touch Screen e Storage su SD con .NET Gadgeteer (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on November 23, 2011
by Mike Dodaro (translated from English by Marco Minerva) Questa applicazione è implementata utilizzando i moduli e la mainboard che fanno parte del GHI Electronics Spider Kit per Micorosoft .NET Gadgeteer. Utilizza la funzionalità touch screen del modulo GHI Electronics .NET Gadgeteer Display T35 per attivare la camera e mostrare le immagini catturate. L’alimentazione è […]
.NET Gadgeteer Relay Circuit using DigitalOutput Interface
Posted by Michael Dodaro in Embedded Microcontrollers on November 21, 2011
The relay scenario uses a low-voltage logic circuit to control another circuit, usually of higher voltage. The relay in this example is a 5 volt DC single pole, single throw reed relay. It is used to switch a battery-driven motor on and off. The switch is controlled by the Gadgeteer.DigitalOutput interface in a .NET Gadgeteer Visual Studio application. The schematic for this […]
Una ProgressBar per .NET Gadgeteer (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on November 21, 2011
Come accennato in uno post di qualche giorno fa, i controlli grafici forniti da .NET Gadgeteer possono essere facilmente combinati per creare oggetti più complessi. Oggi vediamo come realizzare una ProgressBar, utile per mostrare a video lo stato di avanzamento delle operazioni. Il controllo ProgressBar eredita da Border e vi aggiunge quattro proprietà: Minimum e […]
Synchronize the Clock with a Reference Server on the Internet (English)
Posted by Michael Dodaro in Embedded Microcontrollers, REST Web Services on November 20, 2011
by Marco Minerva (translated from Italian by Mike Dodaro) Nearly all applications have to use date and time to record when files are saved, to record accesses to resources, etc. The .NET Micro Framework is no exception. If it were, every application, hardly under way, would have to update its own clock to synchonize it with the real timetable. Beginning with version 4,0, the […]
Sincronizzare l’orologio con un server di riferimento su Internet (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on November 19, 2011
Praticamente tutte le applicazioni che conosciamo hanno a che fare date e ore: per registrare il momento in cui viene salvato un file, per tenere traccia degli accessi alle risorse, ecc.. Il .NET Micro Framework non fa eccezione: anche su tale piattaforma, ogni applicazione, appena avviata, dovrebbe aggiornare il proprio orologio interno per allinearlo all’orario […]
Interfacce Windows-like con .NET Gadgeteer (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on November 18, 2011
Nel precedente post abbiamo visto come creare interfacce grafiche sul display della piattaforma .NET Gadgeteer. In tale occasione abbiamo accennato al fatto che i controlli disponibili possono essere facilmente estesi per ottenere interfacce anche molto complesse. Vediamo quindi come creare la base per realizzare una schermata “Windows-like”, ovvero con barra del titolo e barra di […]
Using the Graphics Interfaces of .NET Gadgeteer (English)
Posted by Michael Dodaro in Embedded Microcontrollers on November 17, 2011
By Marco Minerva (translated from Italian by Mike Dodaro) Thanks to the tools provided by .NET Gadgeteer SDK, creating graphical interfaces with the touch screen is very simple. In fact, the Display object, besides the classic “primitive” functions to create images, geometric shapes, and text, exposes an object called WPFWindow with which it is possible to create objects with functionality similar […]
Remote Control of .NET Gadgeteer Device via REST Web Service
Posted by Michael Dodaro in Embedded Microcontrollers, REST Web Services on November 16, 2011
This example extends code in a previous post: Using the .NET Gadgeteer DigitalOutput Interface. The previous example uses Gadgeteer.Interfaces.DigitalOutput to turn on a LED from application code instead of through a module driver. .NET Gadgeteer device components can be controlled directly from code. We’re going to extend this scenario to control various device components by setting their state via a Web service that […]
Realizzare interfacce per .NET Gadgeteer (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on November 16, 2011
Grazie agli strumenti offerti dal .NET Gadgeteer SDK, creare interfacce grafiche touch screen è estremamente semplice. L’oggetto Display, infatti, oltre alle classiche funzioni “primitive” per disegnare immagini, forme geometriche e testo, espone un oggetto, chiamato WPFWindow, grazie al quale è possibile creare oggetti con una filosofia simile a quella che si avrebbe con WPF. Vediamo […]
Extension methods with .NET Micro Framework (English)
Posted by Marco Minerva in Embedded Microcontrollers on November 14, 2011
by Marco Minerva (translated from Italian by Mike Dodaro) The .NET Micro Framework does not support extension methods, because it does not contain the ExtensionAttribute class, which indicates that a method is an extension. But, adding this functionality is very simple. First, create this class in the project: This allows creation of extension methods in […]
Extension methods con .NET Micro Framework (Italiano)
Posted by Marco Minerva in Articoli in Italiano, Embedded Microcontrollers on November 14, 2011
Il .NET Micro Framework non supporta gli extension methods, perché non contiene la classe ExtensionAttribute, utilizzata appunto per indicare che un metodo è un’estensione. Tuttavia, aggiungere questa funzionalità è molto semplice. Innanzi tutto, creiamo questa classe direttamente nel nostro progetto: Questo ci permette di creare extension methods nel solito modo che conosciamo: L’utilizzo, poi, è […]
REST Web Service to Record Data from a .NET Gadgeteer Sensor Device
Posted by Michael Dodaro in Embedded Microcontrollers, REST Web Services on November 11, 2011
This example demonstrates how to send notification from a .NET Gadgeteer sensor to a REST Web service that records data about the sensor activation. In this case the sensor is the Light Sensor implemented in the previous post. The notification data is simply a sensor account identifier and the date and time the sensor is activated. The code is extensible for various types […]
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)