Hi,
I am searching for one who can write electronic article. It can be work at home or part time job. Please contact me if you are interested. My email : lijoppans (at) gmail (dot) com
Yes, you can access and manage your Raspberry Pi using SSH. SSH stands for Secure Shell. Just connect your Raspberry Pi to a network using Ethernet or WiFi etc... Then you can access it anywhere from the network using SSH. If you are using Linux OS in you PC, you can use its terminal for that...
Yes you are right..
You can connect the 3.3V output of raspberry pi directly to ECHO input of HC-SR04.... It will detect 3.3V as HIGH level... as TTL logic...
but the 5V TRIGGER output of HC-SR04 should not be directly connected to 3.3V input of Raspberry Pi.. it may damage it..
You should use...
There are a lot of tutorials on pic 16f877a availabe on internet..
#include<htc.h>
#include<pic.h>
#define _XTAL_FREQ 8000000
void ADC_Init()
{
ADCON0 = 0x41; //ADC Module Turned ON and Clock is selected
ADCON1 = 0xC0; //All pins as Analog Input
//With reference voltages...
Consider the following..
Wireless Transmitter and Receiver using ASK RF Modules
It uses ASK RF transmitter and receiver pairs (315 or 433MHz). Data is send after encoding using HT12E and the received data is decoded using HT12D..
I want to operate more than one transmitters at the same...
Here are some pic microcontroller tutorials .
PIC Microcontroller MikroC Tutorials
PIC Microcontroller Hi-Tech C Tutorials
MikroC is very easy to learn as it have a lot of built in libraries... ... but it is less efficient compared to Hi-Tech C. Use Hi-Tech C if you want to know the internal...
I have no time to check your code... LED1 is connected to PORTB.0 , LED2 is connected to PORTB.1...and switch is connected to PORTC.0 .. PORTC.0 is pulled up ed via a 10K ohm resistor and pushing the switch makes PORTC.0 low...
here is the mikroc code for you..
void main()
{
int i = 1...
Microchips PICKIT2 is the best of all other pic programmers.. It is a open source pic programmer .. so anyone can make it and distribute it..
The main problem is that, most of the pickit2 components may be unavailable in your locality... I made a modified pickit2, in which most of the...