Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes and updates #1

Open
wants to merge 7 commits into
base: tidy-up
Choose a base branch
from
Open

Fixes and updates #1

wants to merge 7 commits into from

Commits on Jan 21, 2017

  1. Fix handler setup

    bluesign2k committed Jan 21, 2017
    Configuration menu
    Copy the full SHA
    6488c7e View commit details
    Browse the repository at this point in the history
  2. Fixed input pin setups

    Using INPUT_PULLUP as an argument for digitalWrite is risky at best as a
    method to enable the pullup on a pin (valid parameters are 0 (LOW) or 1
    (HIGH). INPUT_PULLUP has a value of 2). Setting pullups should be done
    thorugh pinMode.
    See here:
    
    https://github.com/arduino/Arduino/blob/master/hardware/arduino/avr/cores/arduino/Arduino.h
    
    https://github.com/arduino/Arduino/blob/master/hardware/arduino/avr/cores/arduino/wiring_digital.c
    bluesign2k committed Jan 21, 2017
    Configuration menu
    Copy the full SHA
    b1abbf1 View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2017

  1. Replaced receiver SPI LLD

    Replaced the low level SPI driver for a more generic RX5808 one.
    This should allow for more flexible control of receivers and later
    addition of new features, including individual control of receivers,
    setting arbitrary frequencies, and generally improving code structure.
    bluesign2k committed Jan 22, 2017
    Configuration menu
    Copy the full SHA
    4a0ad65 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    db8ac28 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2017

  1. Formatting corrections

    As requested, replaced tabs with spaces and lowercase function names
    bluesign2k committed Jan 30, 2017
    Configuration menu
    Copy the full SHA
    7879b94 View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2017

  1. Configuration menu
    Copy the full SHA
    d045aaa View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2017

  1. Formatting changes

    Formatting changes, as requested
    bluesign2k committed Aug 25, 2017
    Configuration menu
    Copy the full SHA
    dac5b05 View commit details
    Browse the repository at this point in the history