Shahariar
Published © GPL3+

PSoC 4: Bluetooth Controlled LED Chandelier

A universal Bluetooth remote controlled LED chandelier. Works with any serial command over Bluetooth to turn ON/OFF the lights!

BeginnerFull instructions provided2 hours2,792
PSoC 4: Bluetooth Controlled LED Chandelier

Things used in this project

Hardware components

PSoC 4 Prototyping Kit
Cypress PSoC 4 Prototyping Kit
×1
White LED Stripe
×1
HC-05 Bluetooth Module
HC-05 Bluetooth Module
×1
ATX Power Supply
×1
Speaker Wire
×1
RobotGeek Relay
RobotGeek Relay
×1

Software apps and online services

PSoC Creator
Cypress PSoC Creator
3.0

Story

Read more

Schematics

Sch

Code

main c

C/C++
#include <project.h>


int main()
{   
    uint8 ch;
            
    UART_Start(); 
 Light_Write(0);
    for(;;)
    {
        ch = UART_UartGetChar();
        if(ch!=0)
        {
       
          Light_Write(!Light_Read());   
        }
    }
}

PSoC files

C/C++
No preview (download only).

Credits

Shahariar

Shahariar

71 projects • 261 followers
"What Kills a 'Great life' is a 'Good Life', which is Living a Life Inside While Loop"

Comments