Giter VIP home page Giter VIP logo

pivirtualwire's Introduction

piVirtualWire

Python VirtualWire module for Raspberry Pi and 433MHz RF modules

Dependencies

This code depends on pigpio library and can not be used without it.

Pigpio library is available at this site

Follow this guide to install it on your platform.

pigpio has to be running as a service. To start: sudo /home/pi/PIGPIO/pigpiod

##Hardware This has been tested with:

  • FS1000A transmitter and XY-MK-5V receiver.
  • MX-FS-03V transmitter and MX-05V receiver

Communication over Virtual Wire was successful with Arduino Uno and Arduino Pro Micro.

Example usage

Clone or download project to directory named: piVirtualWire

Sending data

import piVirtualWire.piVirtualWire as piVirtualWire
import time
import pigpio

pi = pigpio.pi()
tx = piVirtualwire.tx(pi, 4, 1000) # Set pigpio instance, TX module GPIO pin and baud rate

msg = "42"

tx.put(msg)
tx.waitForReady()

tx.cancel()
pi.stop()

Receiving data

import piVirtualWire.piVirtualWire as piVirtualWire
import time
import pigpio

pi = pigpio.pi()
rx = piVirtualWire.rx(pi, 18, 1000) # Set pigpio instance, TX module GPIO pin and baud rate

while True:

		while rx.ready():
			print(rx.get())

		time.sleep(0.5)

rx.cancel()
pi.stop()

pivirtualwire's People

Contributors

dzikuvx avatar pawelspychalski avatar klapsa2503 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.