EP-0098: Difference between revisions

From 52Pi Wiki
Jump to navigation Jump to search
m (Yoyojacky moved page DockerPi NightLight SKU: EP-0098 to EP-0098)
 
(34 intermediate revisions by 3 users not shown)
Line 7: Line 7:
You can programmatically control the color of each LED, such as Python or C, or you can control the color of each LED directly through system commands without programming. Most Linux distributions include the i2c-tools, which allows you to control this.
You can programmatically control the color of each LED, such as Python or C, or you can control the color of each LED directly through system commands without programming. Most Linux distributions include the i2c-tools, which allows you to control this.


DockerPi NightLight can only be used one, but can be stacked with other DockerPi expansion board. If you need to run for a long time, we also recommend that you use our DockerPi expansion board to provide more power.
DockerPi NightLight can only be used one, but can be stacked with other DockerPi expansion board. If you need to run for a long time, we also recommend that you use our DockerPi Power expansion board to provide more power.


The module is stacked on the top layer and can be placed with acrylic decoration for better show.
The module is stacked on the top layer and can be placed with acrylic decoration for better show.
Line 16: Line 16:
* Programmable
* Programmable
* Control directly(without programming)
* Control directly(without programming)
* Extend the GPIO Pins
* WS2812 RGB LEDs
* WS2812 RGB LEDs
* Extend the GPIO Pins
* Recommended to be stacked at the top
* Can Stack with other Stack board
* Independent control of each LED
* Independent control of each LED
* 2 * Demo acrylic supports your quick start
* 2 * Demo acrylic supports your quick start
* 2 * Blank acrylic supports your custom ideas
* 2 * Blank acrylic supports your custom ideas
* Recommended to be stacked at the top
* Can Stack with other Stack board
* Independent of the mainboard hardware (require I2C support)
* Independent of the mainboard hardware (require I2C support)


Line 32: Line 32:
|-
|-
|Raspberry Pi All Platform|| √ ||Not Include CM Series & EOL Platform
|Raspberry Pi All Platform|| √ ||Not Include CM Series & EOL Platform
|-
|Banana Pi M3 || √ ||Python 3 & Modify DEVICE_BUS to 2
|-
|Orange Pi Zero || √ || Python 3 & Modify DEVICE_BUS to 0
|-
|-
|}
|}
Line 37: Line 41:
==Gallery==
==Gallery==
{|  
{|  
|[[File:Nlddl02.jpg| 300px| left]]
|[[File:Nlddl04.jpg| 320px| left]]
|[[File:Nlddl03.jpg| 300px| none]]
|[[File:Nlddl01.jpg| 320px| none]]
|[[File:Nlddl04.jpg| 300px| none]]
|}
----
{|
|[[File:Nlddl01.jpg| 300px| left]]
|[[File:Nlddl05.jpg| 300px| none]]
|[[File:Nlddl07.jpg| 300px| none]]
|}
|}


==Package Includes==
==Package Includes==
[[File:Nlddl08.jpg|left|300px]]
<br style="clear:both;">
* 1 x DockerPi NightLight
* 1 x DockerPi NightLight
* 4 x M2.5x12 copper sticks
* 4 x M2.5*12 + 6 Copper stick
* 4 x M2.5x6  screws (Botton)
* 4 x M2.5*6 Nut
* 4 x M2.5x10 screws (Top)
* 4 x M2.5*6 Half-round head screw
* 1 x Instructions
* 1 x Acrylic Pattern Design (Stander)  
* 1 x Acrylic Pattern Design (Stander)  
* 4 x Acrylic Pattern Design (2x Demo and 2x Blank)
* 4 x Acrylic Pattern Design (2x Demo and 2x Blank)
==How to use it==
* Turn on the I2C interface
Open a terminal and Run sudo raspi-config<br>
Use the down arrow to select 5 Interfacing Options.<br>
Arrow down to P5 I2C .<br>
Select yes when it asks you to enable I2C.<br>
Also select yes if it asks about automatically loading the kernel module.<br>
Use the right arrow to select the <Finish> button.<br>
Select yes when it asks to reboot.<br>
* Detect the register of the chip on board
<code> i2cdetect -y 1 </code><br>
you will see this result:
[[File:Nightlighti2c09.png|left|300px]]
<br style="clear:both;">
* Lights up one LED
<code> i2cset -y 1 0x15  0x01 0xff </code><br>
<Pre> The first parameter "0x15" means the address of Nightlight hat.
"0x01" means the first LED's red color, every LED
has a register address, and you can follow this chart, "0xff" means give the LED 100% brightness
and "0x00" will turn of the LED, you can put the value from "0x00" to "0xff" to make a dim LED</pre>


==Register Map==
==Register Map==
{| class="wikitable" style="text-align: center;"  
{| class="wikitable" style="text-align: center;"  
|-
|-
!Register Number !! Function !! Value
!Register Address!! Function !! Value
|-
|-
| 0x01 || LED1 Red || 0(FULL OFF) - 255(FULL ON)
| 0x01 || LED1 Red || 0(FULL OFF) - 255(FULL ON)
Line 94: Line 69:
| 0x05 || LED2 Green || 0(FULL OFF) - 255(FULL ON)
| 0x05 || LED2 Green || 0(FULL OFF) - 255(FULL ON)
|-
|-
| 0x06 || LED3 Blue || 0(FULL OFF) - 255(FULL ON)
| 0x06 || LED2 Blue || 0(FULL OFF) - 255(FULL ON)
|-
|-
| 0x07 || LED3 Red || 0(FULL OFF) - 255(FULL ON)
| 0x07 || LED3 Red || 0(FULL OFF) - 255(FULL ON)
Line 112: Line 87:
| 0x0e || LED5 Green || 0(FULL OFF) - 255(FULL ON)
| 0x0e || LED5 Green || 0(FULL OFF) - 255(FULL ON)
|-
|-
| 0x0f ||LED5 Blue || 0(FULL OFF) - 255(FULL ON)
| 0x0f || LED5 Blue || 0(FULL OFF) - 255(FULL ON)
|-
|-
| 0x10 || LED6 Red || 0(FULL OFF) - 255(FULL ON)
| 0x10 || LED6 Red || 0(FULL OFF) - 255(FULL ON)
Line 132: Line 107:
| 0x18 || LED8 Blue || 0(FULL OFF) - 255(FULL ON)
| 0x18 || LED8 Blue || 0(FULL OFF) - 255(FULL ON)
|-
|-
| 0x19 || Button || 0x01 - Button Pressed  0x00 - Button Released
| 0x19 || Button || 0x01 - Button Pressed  0x00 - Button Released/Manually Reset
|}
|}


==Example Demo(Raspberry Pi)==
==Configuring I2C(Raspberry Pi)==
* Shell Script
Run '''sudo raspi-config''' and follow the prompts to install i2c support for the ARM core and linux kernel<br />
Go to '''Interfacing Options'''
[[File:Raspi-config-1.png |none|320px]]
then '''I2C'''
[[File:Raspi-config-2.png |none|320px]]
Enable!
[[File:Raspi-config-3.png |none|320px]]
Done!
[[File:Raspi-config-4.png |none|320px]]
 
==Direct control without programming(Raspberry Pi)==
The following script demonstrates turn on and turn off each LED.<br>
The following script demonstrates turn on and turn off each LED.<br>
<pre>
<pre>
Line 149: Line 134:
done
done
</pre>
</pre>
----
==Program in Language C(Raspberry Pi)==
* C Language
Create source code and name it "led.c"<br>
The following code demonstrates the use of buttons and LEDs.<br>
<pre>
<pre>
#include <stdio.h>
#include <stdio.h>
Line 196: Line 180:


</pre>
</pre>
Please note that the library is required for use:<br>
Compile!
<code> gcc nightlight.c -lwiringPi -o nightlight </code><br>
 
<code>gcc led.c -lwiringPi -o led</code><br>
 
Exec It!
 
<code>./led</code><br>
----
----
* Python Script
 
The following code is recommended to be executed using Python 3 and install the smbus library:<br>
==Program in Language Python(Raspberry Pi)==
The following code is recommended to be executed using Python 3 and install the '''smbus''' library:<br>
<pre>
<pre>
import time as t
import time as t
import smbus
import smbus
import sys


DEVICE_BUS = 1
DEVICE_BUS = 1
Line 217: Line 208:
             t.sleep(0.2)  
             t.sleep(0.2)  
     except KeyboardInterrupt as e:
     except KeyboardInterrupt as e:
        sys.exit()
         print("Quit the Loop")
         print("Quit the Loop")
</pre>
</pre>
----
----
==Program in Java(Raspberry Pi)==
Create a new file named:NightLight.java and paste following code:
<pre>
import java.io.IOException;
import java.util.Arrays;
import com.pi4j.io.i2c.I2CBus;
import com.pi4j.io.i2c.I2CDevice;
import com.pi4j.io.i2c.I2CFactory;
import com.pi4j.io.i2c.I2CFactory.UnsupportedBusNumberException;
import com.pi4j.platform.PlatformAlreadyAssignedException;
import com.pi4j.util.Console;
public class NightLight {
    public static final int DOCKERPI_NIGHTLIGHT_BOARD = 0x19;
    public static final byte RESET_BIT = (byte) 0x00;
    // NightLight Address
    public static final int NIGHTLIGHT_REG_ADDR = 0x15;
    // LED of NightLight
    public static final byte LED1_RED = (byte) 0x01;
    // NightLight LED status
    public static final byte NIGHTLIGHT_ON = (byte) 0xFF;
    public static final byte NIGHTLIGHT_OFF = (byte) 0x00;
    public static void main(String[] args)
            throws InterruptedException, PlatformAlreadyAssignedException, IOException, UnsupportedBusNumberException {
        int i = 1;
        final Console console = new Console();
        I2CBus i2c = I2CFactory.getInstance(I2CBus.BUS_1);
        I2CDevice device = i2c.getDevice(DOCKERPI_NIGHTLIGHT_BOARD);
        while (true) {
            if (device.read(BUTTON_ADDR) == 0x01) {
                console.println("the button has been pressed");
                device.write(BUTTON_ADDR, RESET_BIT);
                i++;
                if (i > 2) {
                    i = 1;
                }
            }
            if (i == 1) {
                console.println("Turn off LED!");
                device.write(LED1_RED, NIGHTLIGHT_OFF);
                Thread.sleep(5000);
            }
            if (i == 2) {
                console.println("Turn on LED!");
                device.write(LED1_RED, NIGHTLIGHT_ON);
                Thread.sleep(5000);
            }
        }
    }
}
</pre>
*Compile it and running:
<pre>javac NightLight.java -classpath .:/opt/pi4j/lib/'*'</pre>
<pre>sudo java -classpath .:classes:/opt/pi4j/lib/'*' NightLight</pre>


==Keywords==
==Keywords==
* nightlight, dockerpi, raspberry pi, light, i2c, smbus2, iot
* DockerPi,RGB,RGB LED,WS2812,Colorful
 
==Video Tutorial==
==Video Tutorial==
[[File:Youtube.jpeg|thumb|left|200px]]
[[File:Youtube.jpeg|thumb|left|200px]]

Latest revision as of 18:24, 27 August 2021

DockerPi NightLight

Nlddl01.jpg

Description

DockerPi NightLight is a DockerPi series expansion board with 8 WS2812 RGB LEDs. The expansion board communicates with I2C protocol. It can be used in Raspberry Pi, Jetson Nano and other single board computers (require I2C peripherals).

You can programmatically control the color of each LED, such as Python or C, or you can control the color of each LED directly through system commands without programming. Most Linux distributions include the i2c-tools, which allows you to control this.

DockerPi NightLight can only be used one, but can be stacked with other DockerPi expansion board. If you need to run for a long time, we also recommend that you use our DockerPi Power expansion board to provide more power.

The module is stacked on the top layer and can be placed with acrylic decoration for better show.

Features

Nlddl06.jpg
  • DockerPi Series
  • Programmable
  • Control directly(without programming)
  • Extend the GPIO Pins
  • WS2812 RGB LEDs
  • Independent control of each LED
  • 2 * Demo acrylic supports your quick start
  • 2 * Blank acrylic supports your custom ideas
  • Recommended to be stacked at the top
  • Can Stack with other Stack board
  • Independent of the mainboard hardware (require I2C support)

Official Compatibility Test

Not only support the following development boards, other development boards can be compatible if they have I2C peripherals. (Note: some software changes may be required)

Platform DockerPi Nightlight Notes
Raspberry Pi All Platform Not Include CM Series & EOL Platform
Banana Pi M3 Python 3 & Modify DEVICE_BUS to 2
Orange Pi Zero Python 3 & Modify DEVICE_BUS to 0

Gallery

Nlddl04.jpg
Nlddl01.jpg

Package Includes

  • 1 x DockerPi NightLight
  • 4 x M2.5*12 + 6 Copper stick
  • 4 x M2.5*6 Nut
  • 4 x M2.5*6 Half-round head screw
  • 1 x Instructions
  • 1 x Acrylic Pattern Design (Stander)
  • 4 x Acrylic Pattern Design (2x Demo and 2x Blank)

Register Map

Register Address Function Value
0x01 LED1 Red 0(FULL OFF) - 255(FULL ON)
0x02 LED1 Green 0(FULL OFF) - 255(FULL ON)
0x03 LED1 Blue 0(FULL OFF) - 255(FULL ON)
0x04 LED2 Red 0(FULL OFF) - 255(FULL ON)
0x05 LED2 Green 0(FULL OFF) - 255(FULL ON)
0x06 LED2 Blue 0(FULL OFF) - 255(FULL ON)
0x07 LED3 Red 0(FULL OFF) - 255(FULL ON)
0x08 LED3 Green 0(FULL OFF) - 255(FULL ON)
0x09 LED3 Blue 0(FULL OFF) - 255(FULL ON)
0x0a LED4 Red 0(FULL OFF) - 255(FULL ON)
0x0b LED4 Green 0(FULL OFF) - 255(FULL ON)
0x0c LED4 Blue 0(FULL OFF) - 255(FULL ON)
0x0d LED5 Red 0(FULL OFF) - 255(FULL ON)
0x0e LED5 Green 0(FULL OFF) - 255(FULL ON)
0x0f LED5 Blue 0(FULL OFF) - 255(FULL ON)
0x10 LED6 Red 0(FULL OFF) - 255(FULL ON)
0x11 LED6 Green 0(FULL OFF) - 255(FULL ON)
0x12 LED6 Blue 0(FULL OFF) - 255(FULL ON)
0x13 LED7 Red 0(FULL OFF) - 255(FULL ON)
0x14 LED7 Green 0(FULL OFF) - 255(FULL ON)
0x15 LED7 Blue 0(FULL OFF) - 255(FULL ON)
0x16 LED8 Red 0(FULL OFF) - 255(FULL ON)
0x17 LED8 Green 0(FULL OFF) - 255(FULL ON)
0x18 LED8 Blue 0(FULL OFF) - 255(FULL ON)
0x19 Button 0x01 - Button Pressed 0x00 - Button Released/Manually Reset

Configuring I2C(Raspberry Pi)

Run sudo raspi-config and follow the prompts to install i2c support for the ARM core and linux kernel
Go to Interfacing Options

Raspi-config-1.png

then I2C

Raspi-config-2.png

Enable!

Raspi-config-3.png

Done!

Raspi-config-4.png

Direct control without programming(Raspberry Pi)

The following script demonstrates turn on and turn off each LED.

#!/bin/bash

for i in $(seq 1 24)  
do
        i2cset -y 1 0x15 $i 0xFF   # turn on the led
        sleep 0.5
        i2cset -y 1 0x15 $i 0x00   # turn of the led
        sleep 0.5
done

Program in Language C(Raspberry Pi)

Create source code and name it "led.c"

#include <stdio.h>
#include <wiringPi.h>
#include <wiringPiI2C.h>

#define BUTTON_REG_ADDR 0x19

int main(){
        int fd;
        int is_press = 1;
        int is_draw = 0;
        int i = 0;

        fd = wiringPiI2CSetup(0x15);

        for(i = 1;i<25;i++) wiringPiI2CWriteReg8(fd,i,0x00);

        for(;;)
        {
                if (wiringPiI2CReadReg8(fd, BUTTON_REG_ADDR) == 0x01 )
                {
                        is_press++;
                        is_draw = 1;
                        wiringPiI2CWriteReg8(fd,BUTTON_REG_ADDR, 0x0);
                }
                if(is_press && is_draw){
                        is_draw = 0;
                        for(i = 1;i<25;i++){
                                if(is_press > 3) is_press = 1;
                                if(((i + is_press) % 3) == 0)
                                {
                                        wiringPiI2CWriteReg8(fd,i,0xff);
                                }else{
                                        wiringPiI2CWriteReg8(fd,i,0x00);
                                }
                                delay(100);
                        }

                        wiringPiI2CWriteReg8(fd,BUTTON_REG_ADDR, 0x0);
                }
        }
}

Compile!

gcc led.c -lwiringPi -o led

Exec It!

./led


Program in Language Python(Raspberry Pi)

The following code is recommended to be executed using Python 3 and install the smbus library:

import time as t
import smbus
import sys

DEVICE_BUS = 1
DEVICE_ADDR = 0x15
bus = smbus.SMBus(DEVICE_BUS)

while True:
    try:
        for i in range(1,25):
            bus.write_byte_data(DEVICE_ADDR, i, 0xFF)
            t.sleep(0.2)
            bus.write_byte_data(DEVICE_ADDR, i, 0x00)
            t.sleep(0.2) 
    except KeyboardInterrupt as e:
        sys.exit()
        print("Quit the Loop")

Program in Java(Raspberry Pi)

Create a new file named:NightLight.java and paste following code:

import java.io.IOException;
import java.util.Arrays;

import com.pi4j.io.i2c.I2CBus;
import com.pi4j.io.i2c.I2CDevice;
import com.pi4j.io.i2c.I2CFactory;
import com.pi4j.io.i2c.I2CFactory.UnsupportedBusNumberException;
import com.pi4j.platform.PlatformAlreadyAssignedException;
import com.pi4j.util.Console;

public class NightLight {

    public static final int DOCKERPI_NIGHTLIGHT_BOARD = 0x19;
    public static final byte RESET_BIT = (byte) 0x00;

    // NightLight Address
    public static final int NIGHTLIGHT_REG_ADDR = 0x15;

    // LED of NightLight
    public static final byte LED1_RED = (byte) 0x01;

    // NightLight LED status
    public static final byte NIGHTLIGHT_ON = (byte) 0xFF;
    public static final byte NIGHTLIGHT_OFF = (byte) 0x00;

    public static void main(String[] args)
            throws InterruptedException, PlatformAlreadyAssignedException, IOException, UnsupportedBusNumberException {

        int i = 1;
        final Console console = new Console();

        I2CBus i2c = I2CFactory.getInstance(I2CBus.BUS_1);
        I2CDevice device = i2c.getDevice(DOCKERPI_NIGHTLIGHT_BOARD);

        while (true) {
            if (device.read(BUTTON_ADDR) == 0x01) {
                console.println("the button has been pressed");
                device.write(BUTTON_ADDR, RESET_BIT);
                i++;
                if (i > 2) {
                    i = 1;
                }
            }
            if (i == 1) {
                console.println("Turn off LED!");
                device.write(LED1_RED, NIGHTLIGHT_OFF);
                Thread.sleep(5000);
            }
            if (i == 2) {
                console.println("Turn on LED!");
                device.write(LED1_RED, NIGHTLIGHT_ON);
                Thread.sleep(5000);
            }
        }
    }
}
  • Compile it and running:
javac NightLight.java -classpath .:/opt/pi4j/lib/'*'
sudo java -classpath .:classes:/opt/pi4j/lib/'*' NightLight

Keywords

  • DockerPi,RGB,RGB LED,WS2812,Colorful

Video Tutorial

Youtube.jpeg