Robótica e Prototipagem
-
Funduino Módulo Laser p/ Funduino
- Voltagem de funcionamento: 5V - Comprimento de onda: 650nm - Potencia 5 mW - Cor: Vermelho - Material: PCB - Dimensiões: 23x15x9mm
€1,65 €1,45
-
Funduino Módulo Semáforo p/ Funduino
€5,75 €4,95
-
€14,95 €9,95
-
Funduino Módulo Sensor Vapor Água p/ Funduino
€5,25 €4,65
-
Funduino Módulo GSM/GPRS SIM900 p/ Funduino
- Quad-Band GSM/GPRS: 850/900/1800/1900MHz - Adaptação automática á placa principal de 3,3V e 5V - Depois de ligar o módulo SIM900 ao Funduino, é necessária uma fonte de alimentação de 9V DC - 2A. Caso contrário, pode não funcionar
€49,95
-
Keyestudio Placa Bluetooth HC-05 p/ Funduino
- Alimentação: 3,3V
€19,95
-
Keyestudio Módulo Sensor Passagem p/ Funduino
- Alimentação: +5V - Temperatura de trabalho: 0°C ~ + 50°C - Saída Interface: : 3-pinos (1 - sinal, 2 - alimentação + (positivo) , 3 -alimentação - (negativo) - TTL level - Dimensões: 41.7 x 10.7mm - Peso: 3g
€5,45 €4,65
-
Keyestudio Módulo Sensor Fotocelula (LDR) p/ Funduino
- Alimentação: 5V - Interface: Analógico - Medidas: 30x20mm - Peso: 3G
€1,45 €1,25
-
Funduino Módulo IR Emissor p/ Funduino
Caracteristicas- Alimentação: 3-5V - Frequência IR: 850nm-940nm - Ângulo Emissão IRI: Cerca de 20º - Distânica Emissão: Cerca de 1.3m (5V 38Khz) - Suporte Interface: JST PH2.0 - Orificio de Montagem: 3,2mm de diâmetro interno espaço é de 15 mm - Dimensões: 35 x 20mm - Peso: 3gSample Codeint led = 3;void setup() {pinMode(led, OUTPUT);}void loop() {digitalWrite(led, HIGH);delay(1000);digitalWrite(led, LOW);delay(1000);}
€1,95 €1,65
-
Funduino Módulo Digital IR Receptor p/ Funduino
Este sensor IR é amplamente utilizado em controlo remoto. Com este receptor IR, o projecto Arduino pode receber o comando de qualquer controlador IR se tiver o descodificador correcto. Também será mais fácil fazer o seu próprio controlador IR usando o emissor IRCaracteristicas:Voltagem: 5VInterface:DigitalModulate Frequency: 38KhzModule Interface Socket:JST PH2.0Dimensões: 30x20mmPeso: 4gSample Code:#includeint RECV_PIN = 11;IRrecv irrecv(RECV_PIN);decode_results results;void setup(){Serial.begin(9600);irrecv.enableIRIn(); // Start the receiver}void loop() {if (irrecv.decode(&results)) {Serial.println(results.value, HEX);irrecv.resume(); // Receive the next value}
€1,95 €1,65
-
Keyestudio Módulo Sensor Temperatura p/ Funduino - 18B20
O sensor DS18B20 é um sensor digital de temperatura de Dallas Semicondutores, usado para medir o ambiente ou para fazer testes. Suporta leituras multiponto tipo Mesh Networking. Possui 3 pontos, distribuídos da seguinte forma. 1. GND: Terra2. DQ: Saída de Sinal3. VDD: AlimentaçãoCaracteristicas:Temperatura de trabalho: -55°C a 125°CResolução de temperatura: +/-0.5°C.Comunicação serial: 9-12Bits.Voltagem: 5V.Interface: Digital.3 pines JST.
€4,65 €3,95
-
Funduino Módulo Sensor Ritmo Cardiaco p/ Funduino
Modulo sensor de ritmo cardíaco com o dedo. Este sensor é uma alternativa económica para medir o ritmo cardíaco. Compatível, com Arduino, RaspBerry e outros microcontroladores.Caracteristicas:Voltagem: 5V DCPeso: 4 gDimensões: 25 x 12 x 12 mmSample CodeThe program for this project is quite tricky to get right. Indeed, the first step is not to run the entirefinal script, but rather a test script that will gather data that we can then paste into a spreadsheet and chart to test out the smoothing algorithm (more on this later).The test script is provided in Listing Project 12.int ledPin = 13;int sensorPin = 0;double alpha = 0.75;int period = 20;double change = 0.0;void setup(){pinMode(ledPin, OUTPUT);Serial.begin(115200);}void loop(){static double oldValue = 0;static double oldChange = 0;int rawValue =analogRead(sensorPin);double value = alpha * oldValue+ (1 - alpha) * rawValue;Serial.print(rawValue);Serial.print(,);Serial.println(value);oldValue = value;delay(period);}This script reads the raw signal from the analog input and applies the smoothing function and thenwrites both values to the Serial Monitor, where we can capture them and paste them into a spreadsheet for analysis. Note that the Serial Monitors communications is set to its fastest rate tominimize the effects of the delays caused by sending the data. When you start the Serial Monitor, you will need to change the serial speed to 115200 baud.Copy and paste the captured text into a spreadsheet. The resultant data and a line chart drawn from the two columns are shown in Figure 5-17. The more jagged trace is from the raw data read from the analog port, and the smoother trace clearly has most of the noise removed. If the smoothed trace shows significant noise-in particular, any false peaks that will confuse the monitor-increase the level of smoothing by decreasing the value of alpha.Once you have found the right value of alpha for your sensor arrangement, you can transfer thisvalue into the real sketch and switch over to using the real sketch rather than the test sketch. The real sketch is provided in the following listing on the next page.int ledPin = 13;int sensorPin = 0;double alpha = 0.75;int period = 20;double change = 0.0;void setup(){pinMode(ledPin, OUTPUT);Serial.begin(115200);}void loop(){static double oldValue = 0;static double oldChange = 0;int rawValue =analogRead(sensorPin);double value = alpha * oldValue+ (1 - alpha) * rawValue;Serial.print(rawValue);Serial.print(,);Serial.println(value);oldValue = value;delay(period);}Link: http://wiki.keyestudio.com/index.php/Ks0015_keyestudio_Pulse_Rate_Monitor
€5,45 €4,65