The Grove Starter Kit is a fun way to start on Arduino for young kids, because components can be easily plugged in, rather than needing to poke components into a board.
The first time I tried to use the Grove LCD RGB Backlight board, I was disappointed that it seemed to not work. I could change the backlight color, however no text would appear.
The simple resolution: The LCD specs state that it requires 5V to work. The Grove Base Shield has a slide switch to select 3.3V or 5V. Sensibly, it came preset to 3.3V. Slide it over to 5V and the LCD text starts working. When all else fails, RTM.
29 January 2017
Playing with the Jaycar 2.8" TFT LCD touch screen XC4630
Last year I was playing around with the 2.8" TFT LCD touch screen that's available from Jaycar XC4630 on the Arduino Uno. This is must try for anyone experimenting with Arduino. Easy to use and lots of fun.
If this appears to be not working or broken with a blank screen, then possibly the driver library is not quite right.
Jaycar now have a custom build of libraries on their website, which works fine. Download the file, and follow the instructions in the "XC4630 Notes.txt" file. These drivers and examples work fine for me.
Unfortunately this wasn't available last year when I was trying to first get it working. (I was just sitting down now to write up what you can do, but see that it's all much easier now).
The Jaycar libraries are based on the Adafruit libraries, which are hosted in GitHub. For posterity (or if you want to use a more up to date version of the libraries), I had to do the following to get them to work.
1. Download the libraries
If this appears to be not working or broken with a blank screen, then possibly the driver library is not quite right.
Jaycar now have a custom build of libraries on their website, which works fine. Download the file, and follow the instructions in the "XC4630 Notes.txt" file. These drivers and examples work fine for me.
Unfortunately this wasn't available last year when I was trying to first get it working. (I was just sitting down now to write up what you can do, but see that it's all much easier now).
The Jaycar libraries are based on the Adafruit libraries, which are hosted in GitHub. For posterity (or if you want to use a more up to date version of the libraries), I had to do the following to get them to work.
1. Download the libraries
- Adafruit GFX Library (zip download)
- Adafruit TFTLCD Library (zip download)
- Adafruit Touch Screen Library (zip download)
2. Import the libraries into the Arduino software
- Sketch | Include Library | Add .ZIP Library... (once for each)
3. Open an example
- File | Examples | TFTLCD-Library-master | graphicstest
4. Fix the hardware identifier
This is the bit that took a while to figure out. For reference, the serial number on my TFT LCD is: QR4 5265S01 G3/2 TP28017.
- It seems that the readID() function in the Adafruit library does not work with this particular hardware.
- In the example graphicstest program, Locate line 60: uint16_t identifier = tft.readID();
- Change it to: uint16_t identifier = 0x9341;
- Or, equivalently, change line 84 to: tft.begin(0x9341);
The tftpaint program also worked for me with a similar change.
Hope this helps someone.
17 April 2014
Using property getter/setter functions in Angular binding
OK, is most circumstances there's a better way to do this, but sometimes life would be easier if we could have a getter function and a setter function in an Angular binding.
Here's a helper function to make it more convenient to wrap them up. It's a bit rough, but does the job.
Here's a helper function to make it more convenient to wrap them up. It's a bit rough, but does the job.
/**
* For use when you really want to intercept two-way Angular bindings.
* (And usually there's another better way)
*
* Example
* <input
* ng-model="asProp(getCheckbox, setCheckbox, someArg1, someArg2).value"
* type="checkbox" />
* ...
* $scope.asProp = lib.asProp;
* $scope.getCheckbox = function(someArg1, someArg2) { return ... };
* $scope.setCheckbox = function(newValue, someArg1, someArg2) { ... };
*
* Takes a getter and a setter function.
* And optionally additional arguments.
* Returns an object with a single property called 'value'.
* 'value' uses the provided getter and setter functions.
* Additional arguments are passed to the getter and setter:
* getter(additionalArgs) -> currentValue
* setter(newValue, additionalArgs)
*/
lib.asProp = function (getter, setter /* .. args */) {
var res = {};
var args = _.toArray(arguments).slice(2);
Object.defineProperty(res, 'value', {
get: function () {
return getter.apply(null, args);
},
set: function (val) {
var args2 = [val].concat(args);
setter.apply(null, args2);
},
enumerable: true,
configurable: true
});
return res;
};
4 January 2014
Aurora inverter USB connection
We had solar electric installed (yay!). We are using the Aurora PVI 4.2kW inverter, which appears to be a very well recommended unit, but there were a couple of challenges with trying to plug into the USB connection to download live data. Just thought I'd note them down here to hopefully save someone else a bit of time.
There are two pieces of software you need:
1. USB driver - makes the Aurora appear under Windows as a COM port. (Texas Instruments 3410 USB driver). We used this one instead of the Aurora one. "TI WDF USBUART Single Driver" from the software section of this page.
2. Aurora communicator software - Communicates with the Inverter to download and chart data.
(Unfortunately the inverter doesn't actually collect historical data, you need to essentially leave the program running and poll for it). Communicator can be downloaded from here. (select 'UK' as the country, then select Software - because not all countries have any 'software' listed against them).
Issue 1: My laptop is running Windows 7 (x64). For better or worse, the 64 bit version of Windows doesn't run unsigned device drivers. The driver may look like it has installed - but it won't run. The work-around for now is to boot Windows in the special mode to allow unsigned drivers. (Press F8 while the computer is booting, and select "Disable Driver Signature Enforcement."). Or see here for other options.
Issue 2: The Inverter itself needed to be assigned an "address" before it would talk to anything. Go to the inverter itself and use the menu options to go into the settings and set an address. Any number will do. We used "2". Seems to be necessary and in our case wasn't already preconfigured.
Next task: ditch the 70W laptop and start using a Rasberry Pi instead.
There are two pieces of software you need:
1. USB driver - makes the Aurora appear under Windows as a COM port. (Texas Instruments 3410 USB driver). We used this one instead of the Aurora one. "TI WDF USBUART Single Driver" from the software section of this page.
2. Aurora communicator software - Communicates with the Inverter to download and chart data.
(Unfortunately the inverter doesn't actually collect historical data, you need to essentially leave the program running and poll for it). Communicator can be downloaded from here. (select 'UK' as the country, then select Software - because not all countries have any 'software' listed against them).
Issue 1: My laptop is running Windows 7 (x64). For better or worse, the 64 bit version of Windows doesn't run unsigned device drivers. The driver may look like it has installed - but it won't run. The work-around for now is to boot Windows in the special mode to allow unsigned drivers. (Press F8 while the computer is booting, and select "Disable Driver Signature Enforcement."). Or see here for other options.
Issue 2: The Inverter itself needed to be assigned an "address" before it would talk to anything. Go to the inverter itself and use the menu options to go into the settings and set an address. Any number will do. We used "2". Seems to be necessary and in our case wasn't already preconfigured.
Next task: ditch the 70W laptop and start using a Rasberry Pi instead.
28 October 2013
Bank Security Madness
This has probably been said by countless people before, but banking security is just mind bogglingly dumb.
Yesterday I phoned the NAB bank. Along with the usual questions I was asked to name a recent transaction. I couldn't recall one so I asked my wife who was standing next to me. The phone operator proceeded to tell me that I wasn't allowed to ask her because I was the person who needed to know the answer! NAB, if you make me communicate with my wife using a pen and paper instead, then you're not going to gain any security, you're just going to annoy customers.
The next thing that struck me was that the transaction used for authentication could be a debit. Now, generally speaking you don't need to do any authentication to put money into an account. Anyone can deposit into your account as long as they have the account number; thereby rendering this authentication method (as it stands) useless at best.
Today I phoned the ANZ bank. Their system is straight forward enough. I just need to know my Customer Reference Number, my telecode, my security code, and my web password. And I'd better well be able to remember which is which before I run out of attempts.
Authentication is a hard problem to solve, but surely we can do a bit better than this.
Yesterday I phoned the NAB bank. Along with the usual questions I was asked to name a recent transaction. I couldn't recall one so I asked my wife who was standing next to me. The phone operator proceeded to tell me that I wasn't allowed to ask her because I was the person who needed to know the answer! NAB, if you make me communicate with my wife using a pen and paper instead, then you're not going to gain any security, you're just going to annoy customers.
The next thing that struck me was that the transaction used for authentication could be a debit. Now, generally speaking you don't need to do any authentication to put money into an account. Anyone can deposit into your account as long as they have the account number; thereby rendering this authentication method (as it stands) useless at best.
Today I phoned the ANZ bank. Their system is straight forward enough. I just need to know my Customer Reference Number, my telecode, my security code, and my web password. And I'd better well be able to remember which is which before I run out of attempts.
Authentication is a hard problem to solve, but surely we can do a bit better than this.
8 October 2013
Javascript dictionary using objects as keys
One thing that bugs me about Javascript is the inability to have a dictionary with objects as keys. Objects are dictionaries, but essentially toString gets called on anything you use as a key, which isn't always very helpful.
Typical solutions are to call stringify on each object, which is relatively slow and doesn't guarantee reference equality, or to have a custom hashing function, which feels like unnecessary effort. (The jshashtable library generally looks useful, but unless you provide the hashing function the performance drops considerably.
So my requirements are:
OK, it needs a whole lot more work, but you get the idea. We keep track of a global ID so that a key can be used in more than one dictionary simultaneously. If we want to have some way to enumerate over the values or get a count, then we'd also need to store keys/values in the Dictionary itself. I'd probably go with a doubly-linked-list, otherwise add/removes would get slow.
The main disadvantage is that we are adding an extra property to the key objects, which may be undesirable in some circumstances. But overall it solves the requirements without too much mess.
Typical solutions are to call stringify on each object, which is relatively slow and doesn't guarantee reference equality, or to have a custom hashing function, which feels like unnecessary effort. (The jshashtable library generally looks useful, but unless you provide the hashing function the performance drops considerably.
So my requirements are:
- A dictionary that takes objects as keys
- And will only resolve values using the same instance of the object (not just some string match)
- Is fast
- Without any custom hashing functions
function Dict() {
Dict.id = (Dict.id || 0) + 1;
this._prop = '_dict' + Dict.id;
}
Dict.prototype = {
add: function(key, value) {
key[this._prop] = value;
},
contains: function(key) {
return typeof key[this._prop] != 'undefined';
},
get: function(key) {
return key[this._prop];
},
remove: function(key) {
delete key[this._prop];
}
};
// Sample usage
var a = {};
var b = {};
var c = {};
var dict1 = new Dict();
dict1.add(a, 123);
dict1.add(b, 456);
var dict2 = new Dict();
dict2.add(c, 789);
alert(dict1.get(a)); // 123
alert(dict1.contains(c)); // false
alert(dict2.contains(c)); // true
dict2.remove(c);
alert(dict2.contains(c)); // false
OK, it needs a whole lot more work, but you get the idea. We keep track of a global ID so that a key can be used in more than one dictionary simultaneously. If we want to have some way to enumerate over the values or get a count, then we'd also need to store keys/values in the Dictionary itself. I'd probably go with a doubly-linked-list, otherwise add/removes would get slow.
The main disadvantage is that we are adding an extra property to the key objects, which may be undesirable in some circumstances. But overall it solves the requirements without too much mess.
23 September 2013
Using $q promises to run synchronous code asynchronously
The Q Javascript library provides a great way to handle the results of asynchronous tasks in a simple flexible manner. But the APIs required to actually generate and return promises for your own synchronous code are often a bit verbose, particularly if you want to catch and pass on exceptions as well.
Here's a convenient shortcut: Just call $q.when() with no arguments, then place all of your synchronous code (that you want to behave asynchronously) in a subsequent .then() call. This will automatically pick up any results, or exceptions, and pass them on as promises.
E.g.
Here's a convenient shortcut: Just call $q.when() with no arguments, then place all of your synchronous code (that you want to behave asynchronously) in a subsequent .then() call. This will automatically pick up any results, or exceptions, and pass them on as promises.
E.g.
function myAsyncSqrt(value) {
return $q.when()
.then(function() {
return Math.sqrt(value);
});
}
...
var promise = myAsyncSqrt(16);
promise.then(
function(res) { alert('answer:' + res); },
function(err) { alert('uh oh:' + err); });
Subscribe to:
Posts (Atom)