Friday, September 29, 2017

Charlieplexing 3 - hardware

This is the third installment about Charlieplexing.

After my first two stories which you can find by clicking here: http://lucstechblog.blogspot.nl/2017/09/charlieplexing.html and here: http://lucstechblog.blogspot.nl/2017/09/chalieplexing-2.html I got some questions about wiring this all up.

First lets look at the schematics again:




So we are looking at 5 pins from an Attiny85 or Arduino. At trhese 5 pins we will be soldering 20 leds !!! Now that sounds complicated but in real life isn't. So what's the trick.

Well I solder all to a stripboard like this:




Now look closely:




And it's obvious isn't it. The stripboard I am using and that I can strongly advise has long leads just like we need to solder all leds to. It resembles the schematics closely, which makes it easy to follow. The brand name is Velleman and their article number is 3164 however it can also easily be found at our favorite chinese suppliers.
We will solder one pin of the arduino to one end of a strip and another pin to another end of a strip.

Next we will have 5 lanes on which we can solder the leds accoriding to the schematic. Really a piece of cake.

 
As the stripboard is long enough we can easily use this for attaching 20 leds to an Attint85.
This will get more complicated if you want to make your project as compact as possible. But for the projects I am going to describe this setup is more as sufficient.

Next time I will give you a real project using this technique complete with a 3D printed housing.
So until then start soldering and make a prototype and start playing with the software to see what you can get out of this.

Till next time.
Have fun

Luc Volders

Saturday, September 23, 2017

Chalieplexing 2

This is the seond tutorial on Charlieplexing.
In the first story, which you can find by clicking here, I told you why Charlieplexing is such a wonderfull technique and how to do the wiring.

This chapter is going to delve deeper into the software.

So let us first look again at the wiring. Here is the setup for using 5 pins to adress 20 leds.



I am using an Attiny85 here because an Arduino would be overkill. You can however substitute the Attiny85 with an Arduino as the code stays the same. Only thing you will have to do is to substitute the right pinnumbers in the program.

The previous story told you how to adress a single led. Lets resume that here.

We start with putting all pins of the Arduino (or Tiny) in 3-state mode to make sure no leds are on:

int led1 = 0; // pen PWM0
int led2 = 1; // pen PWM1
int led3 = 2; // pen ADC1
int led4 = 3; // pen ADC3
int led5 = 4; // pen ADC2
pinMode(led1, INPUT)
pinMode(led2, INPUT);
pinMode(led3, INPUT);pinMode(led4, INPUT);
pinMode(led5, INPUT);


Now to put on led number 13 you adress it as follows:

pinMode (led2, OUTPUT);
digitalWrite (led2, HIGH);
pinMode (led5, OUTPUT);
digitalWrite (led5, LOW);


This way we can adress all leds individually. However it takes a lot of coding (as you saw in the previous story) and that is prone to errors. So we need to find an easier way.

Best thing to do is to put all led wiring in an array. Then we just need to access the array index to have all data present. Sounds more difficult as it is.

Lets start with defining an array with 20 entries, one for each led, and 2 elements per entry for each pin per led. So the array would look like this:

const int ledpins[20][2] ={
  // this array contains the pins per led
  // edit the pin numbers to your own wiring
  {1,0},
  {0,1},
  {2,0},
  {0,2},
  {3,0},
  {0,3},
  {4,0},
  {0,4},
  {2,1},
  {1,2},
  {3,1},
  {1,3} ,
  {4,1},
  {1,4},
  {3,2},
  {2,3},
  {4,2},
  {2,4},
  {4,3},
  {3,4}
};


So how does this work. Lets start easy. Led number 1 is attached to pins 1 and 0 just like it is punt in the array:

{1,0}. Led number two is wired the other way round and you can find that in the array to: {0,1}. Well let us now look at led number 12. In the wiring schematic you can see it is attached to Arduino pin number 1 and pin number 3. And that is exactly what you will find in the array entrance number 12 being {1,3}.
Lets take another example. Led number 17 is attached to pins 4 and 2 just like array entrance number 17 describes

{4,2}

That is easy isn't it. The array just describes how the pins are wired.

In your code always start with putting all leds off:

void alloff()
// this puts all leds off
{
  for(int i = 0; i < 5; i++)
  {
    pinMode (pins[i], INPUT);
  }
}


That is easy. Just like in the previous story. We set all pins in the INPUT mode so they are in tri-state which turns all leds off.

Next step is to make a function that turns a certain led ON.

void ledon(int lednr)
// choose a led from the array on put it ON
{

  pinMode (ledpins[lednr][0], OUTPUT);
  digitalWrite (ledpins[lednr][0], HIGH);

  pinMode (ledpins[lednr][1], OUTPUT);
  digitalWrite (ledpins[lednr][1], LOW);
  delay(slowdown2);

}


That's all that is to it.

Now if you want to put LED 13 ON for a certain amount of time (determined by the variable slowdown2)you just have to use the next code:

ledon(13);
alloff();


Now lets make a loop in which we put all leds (one by one) on

  for(k=0; k<10; k++)
    {
    ledon(k);
    delay(1000);
    alloff();
     }


The complete code would look like this:

// Charlieplexing on an Attiny 85
// Code by Luc Volders 2014

int pins[] = {0,1,2,3,4};
int i;
int j;
int k;
int slowdown2 = 2; // this delay should have a lower value when using less leds.
                              // for example 4 when using 12 leds
long int start=0;
long int eind=0;

const int ledpins[20][2] ={
  // this array contains the pins per led
  // edit the pin numbers to your own wiring
  {1,0},
  {0,1},
  {2,0},
  {0,2},
  {3,0},
  {0,3},
  {4,0},
  {0,4},
  {2,1},
  {1,2},
  {3,1},
  {1,3} ,
  {4,1},
  {1,4},
  {3,2},
  {2,3},
  {4,2},
  {2,4},
  {4,3},
  {3,4}
};

void setup()
{
  // start with putiing all leds off
  alloff();
}

void loop()
{

  for(k=0; k<10; k++)
    {
    ledon(k);
    delay(1000);
    alloff();
    }
}

void alloff()
// this shuts down all leds
{
  for(int i = 0; i < 5; i++)
  {
    pinMode (pins[i], INPUT);
  }
}

void ledon(int lednr)
// choose a led from the array on put it ON
{

  pinMode (ledpins[lednr][0], OUTPUT);
  digitalWrite (ledpins[lednr][0], HIGH);

  pinMode (ledpins[lednr][1], OUTPUT);
  digitalWrite (ledpins[lednr][1], LOW);
  delay(slowdown2);

}



And this makes programming the individual leds a lot easier and a lot less prone to errors.

I describe here the version for 20 leds but it can easily be adapted to 12 leds by just using pin numbers 0 to 3 and limiting the array to 12 items. That would give you an extra pin for attaching a button or sensor.

Nice all this theory. But what can you do with this.
The next episode shows you how to make a Larson scanner.

So till next time
have fun

Luc Volders

Friday, September 15, 2017

Charlieplexing

I really love the Attiny85 processor. This small processor has a lot of processing power (8 Mhz without any tricks) 5 I/O pins (6 if you do not need to reprogram the processor) and 8K memory. More as sufficient for a lot of projects. And best of all it only costs about a dollar.

However sometimes you run out of I/O pins. I needed to control 20 leds for a project I was making. The Tiny only has 5 I/O pins so that raised a problem. I could move over to a larger processor like the Atmega 328 which has 19 free to use I/O pins.But I wanted to stick by the Attiny85.


So here comes a technique that makes it possible to attach 20 leds to an Attiny 85, provided you can use all 5 I/O pins. The technique is called charlieplexing named after its evangelist Charlie Allen. 

First I'll give you the formula which enables you to detremine how many I/O ports you need for controlling a certain amount of leds:

X * X-1 =  number of leds that can be controlled

So with 3 I/O pins you can control  3 * 3-1 = 6 leds
Using 5 I/O pins you can control 5 * 5-1 = 20 leds.

How does charlieplexing work.

An I/O port can have the digital values 0 or 1. But there is a third state and that is called 3-state. This puts the port in a high-impedance state. So if we put an I/O port in 3-state modus it's value is not 0 and not 1.  We will use that with charlieplexing.

So lets first have a look on how we attach 2 leds to an Attiny 85



Nothing special here. Just 2 I/O ports with each a led attached.

So to connect 5 leds to an Attiny85 you can use the following circuit.



Again nothing dramatic.

But now we are going to do things differently. Lets first start simple and attach 2 leds to an Attiny85 using the Charlieplexing technique. The wiring is now completely different.



So we do not attach both leds to ground but we connect the leds to the I/O pins and one led the other way round.

Now if we put a LOW singnal (0) to pin 5 and a High signal (1) to pin 6 one of the leds will light up. If we switch the HIGH and LOW signals the other led will light up. That is still easy to comprehend.

And here comes the trick. Look at the next scheme:



There you go. 6 Leds attached to 3 pins. Remember the formula: 3 * 3-1 = 6.

However there is a problem using this. We can put a HIGH signal at pin 5 and a LOW signal to pin 7. The current will however run through Led 1 and further to Led 3. And both Leds will light up. That is not what we want. We want to be able to light them up individually. Further problem is that the Attiny85 is not capable of supplying enough current for all leds at the same time. So how are we going to solve that ??? And that is where the software comes in.

How to adress the leds.

So let's get back to the first example with two leds Charlieplexed. 


  



Ok the circuit speaks for itself but now I am going to show you how to adress the individual leds.

Normally we put PWM0 to HIGH to set the first led on and put it to LOW to put the Led off. For the second led we would set PWM1 to HIGH to set the second led ON and LOW to put it off.

With Charlieplexing we need to do that differently. We are going to use the Attiny I/O pins to supply the needed current to the leds.


First step is to define the PINS as INPUT to make sure both leds are off.

int led1 = 0; // pen PWM0
int led2 = 1; // pen PWM1
pinMode(led1, INPUT)
pinMode(led2, INPUT)



Now to put the first led on use the following code:


  pinMode (led1, OUTPUT);
  digitalWrite (led1, HIGH);
  pinMode (led2, OUTPUT);
  digitalWrite (led2, LOW);


And to put led 2 on we use the following code:

  pinMode (led2, OUTPUT);
  digitalWrite (led2, HIGH);
  pinMode (led1, OUTPUT);
  digitalWrite (led1, LOW);


Really quite simple. We just reverse the + and Ground on the pins so that first the first led will turn on and then the second one.

This shows that it is impossible to have both leds on at the same time. For that problem is a solution that I will show you later on.

Ok, nice. But what is the practical use.

Well things change if we use 3 Pins of the Attiny. This gives us a lot more possibillities. With 3 pins we can attach 6 leds. Let's look at the schematics again.




As you can see we can attach 6 leds to 3 pins and even have 2 pins left on the Attiny85 to attach buttons or sensors etc.

LED 1 and LED 2 are attached to pins 5 and 6, LED3 and LED 4 are attached to pins 6 and 7 and LED 5 and LED 6 are attached to pins 5 and 7.

Using software we can adress the individual leds.

First step is to define all pins as an INPUT

int led1 = 0; // pen PWM0
int led2 = 1; // pen PWM1
int led3 = 2; // pen ADC1
pinMode(led1, INPUT); 
pinMode(led2, INPUT);
pinMode(led3, INPUT);


To put Led 1 on we use the next code:

pinMode (led1, OUTPUT);
digitalWrite (led1, HIGH);
pinMode (led2, OUTPUT);
digitalWrite (led2, LOW);

Led 2 can be put on with the following code:

pinMode (led2, OUTPUT);
digitalWrite (led2, HIGH);
pinMode (led1, OUTPUT);
digitalWrite (led1, LOW);


For putting Led 3 on we need the next code:

pinMode (led2, OUTPUT);
digitalWrite (led2, HIGH);
pinMode (led3, OUTPUT);
digitalWrite (led3, LOW);


And putting Led 4 ON done the reverse way as putting Led 3 ON.

pinMode (led3, OUTPUT);
digitalWrite (led3, HIGH);
pinMode (led2, OUTPUT);
digitalWrite (led2, LOW);



Led 5 is adressed in the following maner:

pinMode (led1, OUTPUT);
digitalWrite (led1, HIGH);
pinMode (led3, OUTPUT);
digitalWrite (led3, LOW);



And Led 6 is put on by the reversed code of Led 5

pinMode (led1, OUTPUT);
digitalWrite (led1, HIGH);
pinMode (led3, OUTPUT);
digitalWrite (led3, LOW);


After each led has been set on you NEED to use the following code to put it off again.

pinMode(led1, INPUT); 
pinMode(led2, INPUT);
pinMode(led3, INPUT);

You really need to use this last bit off code each time after putting a led ON. If you don't do that the leds will be ON in an uncontrollable way. More as one pin will be HIGH and that put's leds on in places where you do not want them to be on.

You will surely have noticed by now several things.

Firstly the leds are attached in pairs which makes it simple by reversing polarity on the Attiny pins to put them on and off.

Next you will have noticed that the software to control the leds is getting more complex. In this stage it is manageable. However when you are using 4 pins you can control 4 x 3 = 12 leds and with 5 pins we can control 5 x 4 = 20 leds. The code to adress all these leds individually will be very complicated and that is what we are going to adress in the next part of this story.

Before we go to the next part I am going to show you the circuit in which 5 pins of the attiny85 are used.

If you use just 4 pins of the Attiny85 there is 1 pin left to attach a button or a sensor (LDR, Temperature sensor or whatever). The advantage is obvious. However you can 'only' attach 4 x (4 - 1) = 12 leds.

Using all 5 pins of the Arduino we can control 5 x (5 - 1) = 20 leds. The disadvantage is that there are no pins left to measure something or attach anything else. The only control we can use is to attach a button to the RESET pin of the Attiny85 to restart the program.

The next circuit shows you how to attach 20 leds to the 5 pins of the Attiny85.





As you will understand, the software to control the leds will be much longer if we keep on using the methods described above.

I'll give you an example.

Let's first set all pins of the Arduino in the 3-state mode to make sure nu leds are on.

int led1 = 0; // pen PWM0
int led2 = 1; // pen PWM1
int led3 = 2; // pen ADC1
int led4 = 3; // pen ADC3
int led5 = 4; // pen ADC2
pinMode(led1, INPUT)
pinMode(led2, INPUT);
pinMode(led3, INPUT);pinMode(led4, INPUT);
pinMode(led5, INPUT);


First let us put Led 1 on.

pinMode (led1, OUTPUT);
digitalWrite (led1, HIGH);
pinMode (led2, OUTPUT);
digitalWrite (led2, LOW);


Next step is to put Led 2 on

pinMode (led2, OUTPUT);
digitalWrite (led2, HIGH);
pinMode (led1, OUTPUT);
digitalWrite (led1, LOW);


And now Led 13
pinMode (led2, OUTPUT);
digitalWrite (led2, HIGH);
pinMode (led5, OUTPUT);
digitalWrite (led5, LOW);


Turning Led 14 on is again the reverse from Led 13

pinMode (led5, OUTPUT);
digitalWrite (led5, HIGH);
pinMode (led2, OUTPUT);
digitalWrite (led2, LOW);

Again the rule applies that we have to turn every led off after we have put it on so that all lines are in 3 state mode again and no 2 leds can be uncontrolled on at the same time. Forget to do that and you are in for some really unpredictable results.

So to put 1 particular led on (and off again) we need 9 program lines. For putting all 20 led's on we will need therefore 20 x 9 = 180 program lines. That surely is prone to errors and typo's so that unpredicatble things can happen. There must be a simple solution to that.

And there is !!!

The next part of this story will show you how to simplify the software and how to have multiple leds on at the same time.At this time however you have enough background to start experimenting. Try for instance to make a program that puts all odd leds on and off again.

Till next time

Have fun

Luc Volders

Monday, September 4, 2017

IFTTT 4 - send a notification to my phone

This is the last in a 4 part story. And I urge you to read the previous stories before you go on if you did not have done so yet.

First tutorial was a general introduction to IFTTT Click here to read it.
Second tutorial was how to activate the Maker Channel on IFTTT so you can trigger it with an ESP8266. Click here to read the second tutorial.
Third tutorial tells how to attach a motion-sensor (PIR) to an ESP8266 and trigger IFTTT to publish a Tweet when someone entered your room. Here you can find that tutorial.
In this last story I am going to show you how you can send a notification to your phone if someone entered your room.



So that third story showed you how you can publish a tweet when someone entered your room. That worked flawlessly however as you can see from the screenshot Twitter will clutter up in a hurry when loads of motions are detected. And that's no fun. You might not determine anymore which is which. Besides that, you will have to have Twitter installed and active on your smart-phone to get the messages. And that might not always be the case. So let's see if we can get a more significant notice.


UPDATE:
 

IFTTT has evolved and looks now more as APP's on your phone. But do not be put off basically it is just the same. There is one change that is significant: the maker channel is now called Wehooks and the icon has changed into:



So everywhere in this story where the name Maker Channel is used change it into webhooks.

We are going to make a new recipe in IFTTT for this purpose.

So first log in at IFTTT (https://ifttt.com/)  like I showed you in the previous story you can read by clicking here.




First choose to make a new recipe.




Choose the Maker channel just like we did in the previous story. The difference is that you are already connected to the channel so you already have a key.



Choose the trigger just like last time. There is only 1 trigger for the Maker channel and that is "receive a web request"



Now give the trigger a name. Let's keep it easy. Last time we choose Motion Detected so call this trigger Motion detected 2. Chose create trigger and on to the next screen.



Choose the action channel for the "THAT" function and chose "If Notifications"



Here also we only have 1 choice for the action that follows and that is "Send a notification"

Complete the action by filling in an appropriate text that is going to be send. Just like last time I included the time stamp in the notification.


In this last step you can see the complete action scheme:
If "maker event Notion detected 2" then Send a notification.
Chose for create recipe.

That's it.


Now make sure that you have installed IFTTT on your smart-phone and as soon as movement is detected in your room you will see the led on your phone blink and you will here a notification sound. On the primary screen on your phone you will see in the upper-left corner that there was an "IF" message.



Now open the notification screen on your phone and you can see what the fuzz is all around.

The difference with the previous project is that this notification will only be send to YOUR phone. There is no cluttering up in Twitter anymore.
The drawback is that if you wipe the notification away there is no prove that something happened. In the previous project you would have prove to show that someone was in your room. And that prove would stay safely on Twitter for as long as you like. So chose which option is best for you. However you can instruct IFTTT to do both !!! Send a message to your phone and post a Tweet. Experiment and I am sure you will figure out how to do that with IFTTT.

Amazing isn't it. A two dollar device like the ESP-8266 is capable of sending a notification around the globe so you will know that some-one was in your room. And I am sure you can find lots of other purposes for this technique too. A few ideas come directly to my mind:
- Send a notification when someone opens the fridge door
- Send a notification when someone is at your front door
- Send a notification with the rain-sensor (read how to make one here)

Till next time
Have fun

Luc Volders