Skip to main content
Search type Search syntax
Tags [tag]
Exact "words here"
Author user:1234
user:me (yours)
Score score:3 (3+)
score:0 (none)
Answers answers:3 (3+)
answers:0 (none)
isaccepted:yes
hasaccepted:no
inquestion:1234
Views views:250
Code code:"if (foo != bar)"
Sections title:apples
body:"apples oranges"
URL url:"*.example.com"
Saves in:saves
Status closed:yes
duplicate:no
migrated:no
wiki:no
Types is:question
is:answer
Exclude -[tag]
-apples
For more details on advanced search visit our help page
Results tagged with
Search options not deleted user 58687

The Arduino Nano is a small board based on the ATmega328 or 168. It has male headers, so it can be plugged directly into a breadboard. It is small and compact, and features a USB chip.

0 votes
1 answer
264 views

PIR Sensor Gives False High in 55 Minutes (Can't find a way to solve)

I have built a system to identify motions and fire alerts. System can send a SMS in case if it's identify such alerts. System consist of two parts, Part 1: Armed and Disarmed using a PIN (Using Ardu …
VinRocka's user avatar
  • 145
0 votes
Accepted

PIR Sensor Gives False High in 55 Minutes (Can't find a way to solve)

After tons of research found a way to solve this issue. This is common for ordinary PIR sensors when we use the 5V out from Arduino. Therefore we have to separate the power for PIR and the Arduino …
VinRocka's user avatar
  • 145
1 vote

Arduino Serial Monitor Input 3DES Encryption

#include <DES.h> DES des; byte in[8]; String input; char buf[30]; void setup() { Serial.begin(9600); Serial.println("Hello!"); } void tdesTest() { byte out[8]; byte key[] = { 0x3b, 0 …
VinRocka's user avatar
  • 145
0 votes
2 answers
300 views

Arduino Serial Monitor Input 3DES Encryption

I am trying to 3DES encryption using Serial Read, Found this 3DES Sample code in Github, #include <DES.h> DES des; void setup() { Serial.begin(9600); Serial.println("Hello!"); } void loop() { de …
VinRocka's user avatar
  • 145
0 votes
1 answer
376 views

Pass Byte Array to Char and Send to a Separate Arduino

I am trying to send data between Arduino Nano and D1 Mini (ESP 8266 Module) My Code as below in Nano which will be the transmeting , #include <DES.h> #include <SoftwareSerial.h> SoftwareSerial link(2, …
VinRocka's user avatar
  • 145
1 vote
1 answer
327 views

Sending Data Between Arduino Nano and D1 Mini

I am sending data from Arduino Nano to D1 Mini, Transmitter is Arduino Nano Transmitter Code: #include <DES.h> #include <SoftwareSerial.h> SoftwareSerial link(2, 3); // Rx, Tx DES des; byte in[8]; Str …
VinRocka's user avatar
  • 145
0 votes
Accepted

Sending Data Between Arduino Nano and D1 Mini

Managed Get it Working: Change the Transmitter Code to Cascade Two Char Streams Before Sending: Transmitter Code: #include <DES.h> #include <SoftwareSerial.h> SoftwareSerial link(2, 3); // Rx, Tx DES …
VinRocka's user avatar
  • 145