Loading...
  Show Posts
Pages: 1 [2] 3 4 ... 23
16  International / Generale / Re: Scrittura Mysql on: April 04, 2013, 04:11:39 pm
Se vi interessa in allegato la ultima versione della libreria, l'ho chiesta a Chuck Bell.
Mi dice che l'ha usata due settimane fa su un Leonardo ma non ancora su un DUE.
Non l'ho ancora provata.

ciao
17  Community / Products and Services / Re: Norduino when Arduino meets Nordic! on: April 04, 2013, 06:21:38 am
Ok, you convinced me :-)
Where I can get a norduino ?
18  Using Arduino / Displays / Re: MENWIZ: yet another character lcd menu wizard library on: April 03, 2013, 02:57:49 pm
@JBAUM81

 F("...") is not a real function. It is a macro, that is a #define
The macro expansion probably does not produce a compilable code... 
19  Using Arduino / Networking, Protocols, and Devices / Re: One-To-Many wireless on: April 03, 2013, 08:43:18 am
About nrf24l01+ modules, the cheapest I've found are the following (less than  1 usd each with free shipping !!!).
You can find also smaller lot (about 10) around that price:
http://www.aliexpress.com/item/10PCS-LOT-NRF24L01-NRF24L01-Wireless-Module-2-4G-Wireless-Communication-Module-Upgrade-Module/523014132.html


About the number of ANT network node (ANT is the name of the protocol implemented by  nrf24l01 chip), 6 are the pipes. A pipe is as ort of subchannels id(s) the devices uses to receive/send messages in a user transparent way. The pipes share the same RF frequency. A pipe can be seen as a usb endpoint. If you need more than 6 devices, you can use the mesh capabilities of nrf24l01+ chip. Multiple devices can be arranged on tree architecture in a user transparent way. The addressing is based on a 40 bit identifier.  



20  International / Generale / Re: Arduino GSM Shield: lost in translation? on: March 18, 2013, 09:07:47 am
 " the large orange capacitor" dovrebbe fare da buffer.
21  International / Generale / Re: Arduino GSM Shield: lost in translation? on: March 14, 2013, 04:55:28 pm
il modem si connette sulla rete ip tramite dei comandi standard "AT" inviati su una seriale.
Potresti anche usare dei modem gsm non shield.
Ce ne sono parecchi su ebay, ma hanno un costo solo leggermente inferiore
ogni shield poi ha la sua libreria più o meno elegante nell'uso.
22  International / Generale / Re: Arduino GSM Shield: lost in translation? on: March 14, 2013, 04:31:19 am
Quello che lo differenzia da altre soluzioni secondo me sono i seguenti punti forti:
- è compatibile con la libreria nativa GSM di Arduino (dalla IDE 1.0.4)
- ha una antenna compatta della Antenova: discreta ricezione senza necessità di antenne esterne
- ha in offerta una sim di Telefonica che ha il vantaggio di operare in molti paesi (se tu sei interessato all'Italia non è niente di speciale) con una tariffa identica

cons:
- il disegno soggettivamente non mi piace, ha una board inutilmente lunga che sporge rispetto alla board della serie Uno, con una parte di pcb abbastanza vuoto; è anche possibile però che il ridisegno del pcb (nelle foto della prerelease nel lab era più compatta) sia dovuto alle caratteristiche della antenna (potenziali disturbi se messa troppo vicino agli altri componenti?).

Soggettivamente il primo punto (libreria "ufficiale") mi sembra il più importante. Anche se ho trovato altri shield molto interessanti (vedi per esempio quello della seedstudio.com) e, per quanto conta, più "belli" e compatti.


23  International / Generale / Re: Arduino GSM Shield: lost in translation? on: March 12, 2013, 12:02:19 pm
Si.
Nel frattempo allo shield è cresciuta una coda ... (rispetto al layout presentato nel lab)
E a me è arrivata da bluvia una notifica di disponibiltà. Con preghiera di scaricare la libreria associata allo shield. Ma non era includa nella IDE 1.0.4? Spero sia la stessa.
24  Using Arduino / Displays / Re: MENWIZ: yet another character lcd menu wizard library on: February 27, 2013, 04:15:01 pm
Hi guys. I'm back.
I've lost all the reply notifications, without any apparent reason.
I'll try to work on menwiz in order to implement some improvement as soon as possible.

I'm also working on a completely different  slim library implementing the notion of "watchdog" on any user variable.
In this new lib it is possible to create for any user defined variable some triggers, that is an action to be fired when the trigger conditions (>,=, <,null  for now) are verified. As many sketches are nothing else than a continuous control on some variable values, this lib let the user concentrate on the actions to be performed instead of the control logic, allowing very compact user code...
stay tuned !
25  International / Megatopic / Re: OT: raspberry pc ultra low cost, per smanettoni on: February 01, 2013, 07:12:46 am
credo che cb consumi più di 500mA (la raspi è data a 700 mA vedi http://elinux.org/RPi_Hardware#Power).Cb con un ssd consuma circa 10W. senza non so bene. proverò a monitorare. Ho trocvato questo link che può essere utile https://groups.google.com/forum/?fromgroups=#!topic/cubieboard/vDIu-LHnW8k


26  International / Megatopic / Re: Libreria per display I2C Daisy24 on: February 01, 2013, 05:25:53 am
Ammetto, io che sono un soft-man e ci capisco pochino di elettronica (nessuno è perfetto) sono affascinato ... :-)
27  International / Megatopic / Re: OT: raspberry pc ultra low cost, per smanettoni on: February 01, 2013, 05:16:56 am
Il consumo della cb dovrebbe essere vicino a quello di un raspberry 700 mA (3.5W), senza niente attaccato ! Neanche ethernet
Ho appena ricevuto anche io una cb, ma non ho avuto tempo per provarla. Levami una curiosità, se non ho capito male vorresti fare una catena (pc)USB->Arduino->CB  con un solo punto di alimentazione (USB)?
Ad occhio ti servono almeno 1000 mA compresa una connessione Internet. Fammi sapere se funziona ...
28  Using Arduino / Displays / Re: MENWIZ: yet another character lcd menu wizard library on: January 30, 2013, 04:06:39 pm
In order to let  MENWIZ manage different lcd interfaces the internal variable holding the lcd object pointer is of type LCD.
LCD is a base class of new liquidCrystal, alllowing to "virtualize" the interface, that is to work with all the supported interfaces.
That is the reason why new liquidCrystal is needed.

Liquid crystal is a collection of classes based on the virtual base class LCD. Each subclass implement a different interface: LiquidCrystal_I2C, LiquidCrystal_SR, LiquidCrystal_SR2,LiquidCrystal_SR2W. To use one interface all you need to do is to change the name of the library directory matching that of the desired interface class. Arduino IDE will use the proper source file andcompile it.
 
So I'm quite confident  liquidCrystal is able to drive your LCD. Unfortunately I cannot tell the proper constructor statement as I have not the device.

You could use an other "external" liquidCrystal library with small changes, in your case, in MENWIZ.H change:
#define MW_LCD  LCD  to #define MW_LCD LiquidCrystal
#include <LCD.h> to #include <LiquidCrystal.h>

If I'm not forgetting something, it should work. Again, I suggest to use new LiquidCrystal instead.
29  International / Hardware / Re: tastierino 4x4 e pin on: January 25, 2013, 02:50:32 am
Una volta risolta la trasformazione dell'interfaccia del keypad in I2c l'accrocco risolve il problema banale di connettere più device i2c. Io l'ho trovato molto comodo.
La trasformazione della interfaccia può anche essere fatta o come da voi segnalato o usando qualcosa come la schedina sparkfun http://www.sparkfun.com/products/11502 che tra l'altro ha il vantaggio di avere gia funzioni per lo scan del keypad, gestisce anche una linea di interrupt opzionale utile nel caso di intefaccia con dispositivi di input (e costa meno della schedina di  breakout PCF8575 http://www.sparkfun.com/products/8130).

Essendo io un povero soft-man devo compensare la mia ignoranza cercando in giro moduli hw gia precotti....
30  International / Hardware / Re: tastierino 4x4 e pin on: January 24, 2013, 05:29:45 pm
sarà ma funziona. almeno con 4 connessioni : rfid, 2 lcd, arduino...
Pages: 1 [2] 3 4 ... 23