UVC Camera Movie Monitoring [P006]



 

https://www.youtube.com/watch?v=mGtN4wd5KvQ


*GitHubhttps://github.com/rdiot/rdiot-p006.git

 

 

* Parts

- Arduino Yun (ARDUINO-YUN) [B015]

- Logitech HD WebCam C310 (C310) [S084]

 

 

* Contents

1. Install UVC Class

  : opkg update

  : opkg install kmod-video-uvc

   

2. Install mjpg-streamer

  : opkg install mjpg-streamer

 

3. config /etc/config/mjpg-streamer

   : config mjpg-streamer 'core'

         option device 'dev/video0'

         option resolution '640x480'

         option fps '30'

         option www '/www/webcam'

         option port '8080'

         option enabled '1'

 

4. startup mjpg-streamer

  : /etc/init.d/mjpg-streamer enable

  : /etc/init.d/mjpg-streamer start

 

5. Movie Monitoring by web browser

  : http://IP:8080/?action=stream

  : http://IP:8080/javascript_simple.html 

Posted by RDIoT
|

3D Illusion Elephant Light 7 Color Acrylic LED





https://www.youtube.com/watch?v=6HQlEzAKwSk


* Specs

3D design lamp, just like a real one.  
Two modes, seven colors for a better performance.  
Made by acrylic, envrironmental and safe to use.  
Made for creating romantic surrounding.  
A great gift for children,girlfriend and families.  
USB should be used to supply power.  


Power: 0-5W
Output voltage: 5V
Switch mode: touch switch
Power by:usb 5v
Product weight: 0.3KG
acrylic board size:  185x211x4mm    
Base size:85x85x36mm
A single packing box size: 270*200*45mm
Accessories: acrylic board *1 ABS Base*1 USB data line *1
Product color: seven color: red, green, blue, yellow, purple, white, celadon, adjustable 10.solid color or colorful gradient


Posted by RDIoT
|

Digital Touch Sensor Module Capacitive Switch [S243]





https://www.youtube.com/watch?v=p1z_nWX7cvg


*GitHub https://github.com/rdiot/rdiot-s243.git


* Specs

Features:
Low power consumption
Power supply for 2.5-5.5V DC
The module is based on a touch-sensing capacitive touch switch module. In the normal state, the module output low, low power consumption; When a finger touches the corresponding position, the module output high, if not touched for 12 seconds, switch to low-power mode.

Specifications:
Color: Blue
Module size:1.4*1.4cm
Modes: jog, self-locking

Package includes:
1 x Digital Touch Sensor Module



* Contents

- Connect

VCC ----- 5V

Middle ----- GND

OUT ----- D2


- Key Code

int touchPin = 2; 

 

void setup() {

  Serial.begin(9600);

  pinMode(touchPin, INPUT);  

}

 

void loop() {

  int touchValue = digitalRead(touchPin);

  Serial.println(touchValue);

 

  delay(100);  

}

'2) Sensor > Touch' 카테고리의 다른 글

Metal Touch Sensor Module [S042]  (0) 2016.09.12
Catalex Capacitive Touch Sensor (TTP223B) [S009]  (0) 2016.09.12
Posted by RDIoT
|