diff options
Diffstat (limited to 'arduino/libraries/Wire')
10 files changed, 813 insertions, 0 deletions
diff --git a/arduino/libraries/Wire/Wire.h b/arduino/libraries/Wire/Wire.h new file mode 100755 index 0000000..f2af3a4 --- /dev/null +++ b/arduino/libraries/Wire/Wire.h @@ -0,0 +1,108 @@ +/* + * TWI/I2C library for mRF5x + * Copyright (c) 2015 Arduino LLC. All rights reserved. + * Copyright (c) 2016 Sandeep Mistry All right reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef TwoWire_h +#define TwoWire_h + +#include "nrf.h" + +#include "Stream.h" +#include "variant.h" + +#include "RingBuffer.h" + +// WIRE_HAS_END means Wire has end() +#define WIRE_HAS_END 1 + +class TwoWire : public Stream +{ + public: +#if defined(NRF52) || defined(NRF52_SERIES) + TwoWire(NRF_TWIM_Type * p_twim, NRF_TWIS_Type * p_twis, IRQn_Type IRQn, uint8_t pinSDA, uint8_t pinSCL); +#else + TwoWire(NRF_TWI_Type * p_twi, uint8_t pinSDA, uint8_t pinSCL); +#endif + void begin(); +#if defined(NRF52) || defined(NRF52_SERIES) + void begin(uint8_t); +#endif + void end(); + void setClock(uint32_t); + + void beginTransmission(uint8_t); + uint8_t endTransmission(bool stopBit); + uint8_t endTransmission(void); + + uint8_t requestFrom(uint8_t address, size_t quantity, bool stopBit); + uint8_t requestFrom(uint8_t address, size_t quantity); + + size_t write(uint8_t data); + size_t write(const uint8_t * data, size_t quantity); + + virtual int available(void); + virtual int read(void); + virtual int peek(void); + virtual void flush(void); +#if defined(NRF52) || defined(NRF52_SERIES) + void onReceive(void(*)(int)); + void onRequest(void(*)(void)); + void onService(void); +#endif + + using Print::write; + + private: +#if defined(NRF52) || defined(NRF52_SERIES) + NRF_TWIM_Type * _p_twim; + NRF_TWIS_Type * _p_twis; +#else + NRF_TWI_Type * _p_twi; +#endif + + IRQn_Type _IRQn; + + uint8_t _uc_pinSDA; + uint8_t _uc_pinSCL; + + bool master; + bool receiving; + bool transmissionBegun; + bool suspended; + + // RX Buffer + RingBuffer rxBuffer; + + // TX buffer + RingBuffer txBuffer; + uint8_t txAddress; + + // Callback user functions + void (*onRequestCallback)(void); + void (*onReceiveCallback)(int); + + // TWI clock frequency + static const uint32_t TWI_CLOCK = 100000; +}; + +#if WIRE_INTERFACES_COUNT > 0 +extern TwoWire Wire; +#endif + +#endif diff --git a/arduino/libraries/Wire/Wire_nRF52.cpp b/arduino/libraries/Wire/Wire_nRF52.cpp new file mode 100755 index 0000000..fa5666e --- /dev/null +++ b/arduino/libraries/Wire/Wire_nRF52.cpp @@ -0,0 +1,407 @@ +/* + * TWI/I2C library for nRF5x + * Copyright (c) 2015 Arduino LLC. All rights reserved. + * Copyright (c) 2016 Sandeep Mistry All right reserved. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#if defined(NRF52) || defined(NRF52_SERIES) + +extern "C" { +#include <string.h> +} + +#include <Arduino.h> +#include <wiring_private.h> + +#include "Wire.h" + +static volatile uint32_t* pincfg_reg(uint32_t pin) +{ + NRF_GPIO_Type * port = nrf_gpio_pin_port_decode(&pin); + return &port->PIN_CNF[pin]; +} + +TwoWire::TwoWire(NRF_TWIM_Type * p_twim, NRF_TWIS_Type * p_twis, IRQn_Type IRQn, uint8_t pinSDA, uint8_t pinSCL) +{ + this->_p_twim = p_twim; + this->_p_twis = p_twis; + this->_IRQn = IRQn; + this->_uc_pinSDA = g_ADigitalPinMap[pinSDA]; + this->_uc_pinSCL = g_ADigitalPinMap[pinSCL]; + transmissionBegun = false; +} + +void TwoWire::begin(void) { + //Master Mode + master = true; + + *pincfg_reg(_uc_pinSCL) = ((uint32_t)GPIO_PIN_CNF_DIR_Input << GPIO_PIN_CNF_DIR_Pos) + | ((uint32_t)GPIO_PIN_CNF_INPUT_Connect << GPIO_PIN_CNF_INPUT_Pos) + | ((uint32_t)GPIO_PIN_CNF_PULL_Pullup << GPIO_PIN_CNF_PULL_Pos) + | ((uint32_t)GPIO_PIN_CNF_DRIVE_S0D1 << GPIO_PIN_CNF_DRIVE_Pos) + | ((uint32_t)GPIO_PIN_CNF_SENSE_Disabled << GPIO_PIN_CNF_SENSE_Pos); + + *pincfg_reg(_uc_pinSDA) = ((uint32_t)GPIO_PIN_CNF_DIR_Input << GPIO_PIN_CNF_DIR_Pos) + | ((uint32_t)GPIO_PIN_CNF_INPUT_Connect << GPIO_PIN_CNF_INPUT_Pos) + | ((uint32_t)GPIO_PIN_CNF_PULL_Pullup << GPIO_PIN_CNF_PULL_Pos) + | ((uint32_t)GPIO_PIN_CNF_DRIVE_S0D1 << GPIO_PIN_CNF_DRIVE_Pos) + | ((uint32_t)GPIO_PIN_CNF_SENSE_Disabled << GPIO_PIN_CNF_SENSE_Pos); + + _p_twim->FREQUENCY = TWIM_FREQUENCY_FREQUENCY_K100; + _p_twim->ENABLE = (TWIM_ENABLE_ENABLE_Enabled << TWIM_ENABLE_ENABLE_Pos); + _p_twim->PSEL.SCL = _uc_pinSCL; + _p_twim->PSEL.SDA = _uc_pinSDA; + + NVIC_ClearPendingIRQ(_IRQn); + NVIC_SetPriority(_IRQn, 3); + NVIC_EnableIRQ(_IRQn); +} + +void TwoWire::begin(uint8_t address) { + //Slave mode + master = false; + + *pincfg_reg(_uc_pinSCL) = ((uint32_t)GPIO_PIN_CNF_DIR_Input << GPIO_PIN_CNF_DIR_Pos) + | ((uint32_t)GPIO_PIN_CNF_INPUT_Disconnect << GPIO_PIN_CNF_INPUT_Pos) + | ((uint32_t)GPIO_PIN_CNF_PULL_Disabled << GPIO_PIN_CNF_PULL_Pos) + | ((uint32_t)GPIO_PIN_CNF_DRIVE_S0S1 << GPIO_PIN_CNF_DRIVE_Pos) + | ((uint32_t)GPIO_PIN_CNF_SENSE_Disabled << GPIO_PIN_CNF_SENSE_Pos); + + *pincfg_reg(_uc_pinSDA) = ((uint32_t)GPIO_PIN_CNF_DIR_Input << GPIO_PIN_CNF_DIR_Pos) + | ((uint32_t)GPIO_PIN_CNF_INPUT_Disconnect << GPIO_PIN_CNF_INPUT_Pos) + | ((uint32_t)GPIO_PIN_CNF_PULL_Disabled << GPIO_PIN_CNF_PULL_Pos) + | ((uint32_t)GPIO_PIN_CNF_DRIVE_S0S1 << GPIO_PIN_CNF_DRIVE_Pos) + | ((uint32_t)GPIO_PIN_CNF_SENSE_Disabled << GPIO_PIN_CNF_SENSE_Pos); + + _p_twis->ADDRESS[0] = address; + _p_twis->CONFIG = TWIS_CONFIG_ADDRESS0_Msk; + _p_twis->PSEL.SCL = _uc_pinSCL; + _p_twis->PSEL.SDA = _uc_pinSDA; + + _p_twis->ORC = 0xff; + + _p_twis->INTENSET = TWIS_INTEN_STOPPED_Msk | TWIS_INTEN_ERROR_Msk | TWIS_INTEN_WRITE_Msk | TWIS_INTEN_READ_Msk; + + NVIC_ClearPendingIRQ(_IRQn); + NVIC_SetPriority(_IRQn, 3); + NVIC_EnableIRQ(_IRQn); + + _p_twis->ENABLE = (TWIS_ENABLE_ENABLE_Enabled << TWIS_ENABLE_ENABLE_Pos); +} + +void TwoWire::setClock(uint32_t baudrate) { + if (master) { + _p_twim->ENABLE = (TWIM_ENABLE_ENABLE_Disabled << TWIM_ENABLE_ENABLE_Pos); + + uint32_t frequency; + + if (baudrate <= 100000) + { + frequency = TWIM_FREQUENCY_FREQUENCY_K100; + } + else if (baudrate <= 250000) + { + frequency = TWIM_FREQUENCY_FREQUENCY_K250; + } + else + { + frequency = TWIM_FREQUENCY_FREQUENCY_K400; + } + + _p_twim->FREQUENCY = frequency; + _p_twim->ENABLE = (TWIM_ENABLE_ENABLE_Enabled << TWIM_ENABLE_ENABLE_Pos); + } +} + +void TwoWire::end() { + if (master) + { + _p_twim->ENABLE = (TWIM_ENABLE_ENABLE_Disabled << TWIM_ENABLE_ENABLE_Pos); + } + else + { + _p_twis->ENABLE = (TWIS_ENABLE_ENABLE_Disabled << TWIS_ENABLE_ENABLE_Pos); + } +} + +uint8_t TwoWire::requestFrom(uint8_t address, size_t quantity, bool stopBit) +{ + if(quantity == 0) + { + return 0; + } + + size_t byteRead = 0; + rxBuffer.clear(); + + _p_twim->ADDRESS = address; + + _p_twim->TASKS_RESUME = 0x1UL; + _p_twim->RXD.PTR = (uint32_t)rxBuffer._aucBuffer; + _p_twim->RXD.MAXCNT = quantity; + _p_twim->TASKS_STARTRX = 0x1UL; + + while(!_p_twim->EVENTS_RXSTARTED && !_p_twim->EVENTS_ERROR); + _p_twim->EVENTS_RXSTARTED = 0x0UL; + + while(!_p_twim->EVENTS_LASTRX && !_p_twim->EVENTS_ERROR); + _p_twim->EVENTS_LASTRX = 0x0UL; + + if (stopBit || _p_twim->EVENTS_ERROR) + { + _p_twim->TASKS_STOP = 0x1UL; + while(!_p_twim->EVENTS_STOPPED); + _p_twim->EVENTS_STOPPED = 0x0UL; + } + else + { + _p_twim->TASKS_SUSPEND = 0x1UL; + while(!_p_twim->EVENTS_SUSPENDED); + _p_twim->EVENTS_SUSPENDED = 0x0UL; + } + + if (_p_twim->EVENTS_ERROR) + { + _p_twim->EVENTS_ERROR = 0x0UL; + } + + byteRead = rxBuffer._iHead = _p_twim->RXD.AMOUNT; + + return byteRead; +} + +uint8_t TwoWire::requestFrom(uint8_t address, size_t quantity) +{ + return requestFrom(address, quantity, true); +} + +void TwoWire::beginTransmission(uint8_t address) { + // save address of target and clear buffer + txAddress = address; + txBuffer.clear(); + + transmissionBegun = true; +} + +// Errors: +// 0 : Success +// 1 : Data too long +// 2 : NACK on transmit of address +// 3 : NACK on transmit of data +// 4 : Other error +uint8_t TwoWire::endTransmission(bool stopBit) +{ + transmissionBegun = false ; + + // Start I2C transmission + _p_twim->ADDRESS = txAddress; + + _p_twim->TASKS_RESUME = 0x1UL; + + _p_twim->TXD.PTR = (uint32_t)txBuffer._aucBuffer; + _p_twim->TXD.MAXCNT = txBuffer.available(); + + _p_twim->TASKS_STARTTX = 0x1UL; + + while(!_p_twim->EVENTS_TXSTARTED && !_p_twim->EVENTS_ERROR); + _p_twim->EVENTS_TXSTARTED = 0x0UL; + + if (txBuffer.available()) { + while(!_p_twim->EVENTS_LASTTX && !_p_twim->EVENTS_ERROR); + } + _p_twim->EVENTS_LASTTX = 0x0UL; + + if (stopBit || _p_twim->EVENTS_ERROR) + { + _p_twim->TASKS_STOP = 0x1UL; + while(!_p_twim->EVENTS_STOPPED); + _p_twim->EVENTS_STOPPED = 0x0UL; + } + else + { + _p_twim->TASKS_SUSPEND = 0x1UL; + while(!_p_twim->EVENTS_SUSPENDED); + _p_twim->EVENTS_SUSPENDED = 0x0UL; + } + + if (_p_twim->EVENTS_ERROR) + { + _p_twim->EVENTS_ERROR = 0x0UL; + + uint32_t error = _p_twim->ERRORSRC; + + _p_twim->ERRORSRC = error; + + if (error == TWIM_ERRORSRC_ANACK_Msk) + { + return 2; + } + else if (error == TWIM_ERRORSRC_DNACK_Msk) + { + return 3; + } + else + { + return 4; + } + } + + return 0; +} + +uint8_t TwoWire::endTransmission() +{ + return endTransmission(true); +} + +size_t TwoWire::write(uint8_t ucData) +{ + // No writing, without begun transmission or a full buffer + if ( !transmissionBegun || txBuffer.isFull() ) + { + return 0 ; + } + + txBuffer.store_char( ucData ) ; + + return 1 ; +} + +size_t TwoWire::write(const uint8_t *data, size_t quantity) +{ + //Try to store all data + for(size_t i = 0; i < quantity; ++i) + { + //Return the number of data stored, when the buffer is full (if write return 0) + if(!write(data[i])) + return i; + } + + //All data stored + return quantity; +} + +int TwoWire::available(void) +{ + return rxBuffer.available(); +} + +int TwoWire::read(void) +{ + return rxBuffer.read_char(); +} + +int TwoWire::peek(void) +{ + return rxBuffer.peek(); +} + +void TwoWire::flush(void) +{ + // Do nothing, use endTransmission(..) to force + // data transfer. +} + +void TwoWire::onReceive(void(*function)(int)) +{ + onReceiveCallback = function; +} + +void TwoWire::onRequest(void(*function)(void)) +{ + onRequestCallback = function; +} + +void TwoWire::onService(void) +{ + if (_p_twis->EVENTS_WRITE) + { + _p_twis->EVENTS_WRITE = 0x0UL; + + receiving = true; + + rxBuffer.clear(); + + _p_twis->RXD.PTR = (uint32_t)rxBuffer._aucBuffer; + _p_twis->RXD.MAXCNT = sizeof(rxBuffer._aucBuffer); + + _p_twis->TASKS_PREPARERX = 0x1UL; + } + + if (_p_twis->EVENTS_READ) + { + _p_twis->EVENTS_READ = 0x0UL; + + receiving = false; + transmissionBegun = true; + + txBuffer.clear(); + + if (onRequestCallback) + { + onRequestCallback(); + } + + transmissionBegun = false; + + _p_twis->TXD.PTR = (uint32_t)txBuffer._aucBuffer; + _p_twis->TXD.MAXCNT = txBuffer.available(); + + _p_twis->TASKS_PREPARETX = 0x1UL; + } + + if (_p_twis->EVENTS_STOPPED) + { + _p_twis->EVENTS_STOPPED = 0x0UL; + + if (receiving) + { + int rxAmount = _p_twis->RXD.AMOUNT; + + rxBuffer._iHead = rxAmount; + + if (onReceiveCallback) + { + onReceiveCallback(rxAmount); + } + } + } + + if (_p_twis->EVENTS_ERROR) + { + _p_twis->EVENTS_ERROR = 0x0UL; + + uint32_t error = _p_twis->ERRORSRC; + _p_twis->ERRORSRC = error; + + _p_twis->TASKS_STOP = 0x1UL; + } +} + +TwoWire Wire(NRF_TWIM1, NRF_TWIS1, SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1_IRQn, PIN_WIRE_SDA, PIN_WIRE_SCL); + +#if WIRE_INTERFACES_COUNT > 0 +extern "C" +{ + void SPIM1_SPIS1_TWIM1_TWIS1_SPI1_TWI1_IRQHandler(void) + { + Wire.onService(); + } +} +#endif + +#endif diff --git a/arduino/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino b/arduino/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino new file mode 100755 index 0000000..9c41c18 --- /dev/null +++ b/arduino/libraries/Wire/examples/SFRRanger_reader/SFRRanger_reader.ino @@ -0,0 +1,87 @@ +// I2C SRF10 or SRF08 Devantech Ultrasonic Ranger Finder +// by Nicholas Zambetti <http://www.zambetti.com> +// and James Tichenor <http://www.jamestichenor.net> + +// Demonstrates use of the Wire library reading data from the +// Devantech Utrasonic Rangers SFR08 and SFR10 + +// Created 29 April 2006 + +// This example code is in the public domain. + + +#include <Wire.h> + +void setup() +{ + Wire.begin(); // join i2c bus (address optional for master) + Serial.begin(9600); // start serial communication at 9600bps +} + +int reading = 0; + +void loop() +{ + // step 1: instruct sensor to read echoes + Wire.beginTransmission(112); // transmit to device #112 (0x70) + // the address specified in the datasheet is 224 (0xE0) + // but i2c adressing uses the high 7 bits so it's 112 + Wire.write(byte(0x00)); // sets register pointer to the command register (0x00) + Wire.write(byte(0x50)); // command sensor to measure in "inches" (0x50) + // use 0x51 for centimeters + // use 0x52 for ping microseconds + Wire.endTransmission(); // stop transmitting + + // step 2: wait for readings to happen + delay(70); // datasheet suggests at least 65 milliseconds + + // step 3: instruct sensor to return a particular echo reading + Wire.beginTransmission(112); // transmit to device #112 + Wire.write(byte(0x02)); // sets register pointer to echo #1 register (0x02) + Wire.endTransmission(); // stop transmitting + + // step 4: request reading from sensor + Wire.requestFrom(112, 2); // request 2 bytes from slave device #112 + + // step 5: receive reading from sensor + if(2 <= Wire.available()) // if two bytes were received + { + reading = Wire.read(); // receive high byte (overwrites previous reading) + reading = reading << 8; // shift high byte to be high 8 bits + reading |= Wire.read(); // receive low byte as lower 8 bits + Serial.println(reading); // print the reading + } + + delay(250); // wait a bit since people have to read the output :) +} + + +/* + +// The following code changes the address of a Devantech Ultrasonic Range Finder (SRF10 or SRF08) +// usage: changeAddress(0x70, 0xE6); + +void changeAddress(byte oldAddress, byte newAddress) +{ + Wire.beginTransmission(oldAddress); + Wire.write(byte(0x00)); + Wire.write(byte(0xA0)); + Wire.endTransmission(); + + Wire.beginTransmission(oldAddress); + Wire.write(byte(0x00)); + Wire.write(byte(0xAA)); + Wire.endTransmission(); + + Wire.beginTransmission(oldAddress); + Wire.write(byte(0x00)); + Wire.write(byte(0xA5)); + Wire.endTransmission(); + + Wire.beginTransmission(oldAddress); + Wire.write(byte(0x00)); + Wire.write(newAddress); + Wire.endTransmission(); +} + +*/ diff --git a/arduino/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino b/arduino/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino new file mode 100755 index 0000000..38da1c5 --- /dev/null +++ b/arduino/libraries/Wire/examples/digital_potentiometer/digital_potentiometer.ino @@ -0,0 +1,39 @@ +// I2C Digital Potentiometer +// by Nicholas Zambetti <http://www.zambetti.com> +// and Shawn Bonkowski <http://people.interaction-ivrea.it/s.bonkowski/> + +// Demonstrates use of the Wire library +// Controls AD5171 digital potentiometer via I2C/TWI + +// Created 31 March 2006 + +// This example code is in the public domain. + +// This example code is in the public domain. + + +#include <Wire.h> + +void setup() +{ + Wire.begin(); // join i2c bus (address optional for master) +} + +byte val = 0; + +void loop() +{ + Wire.beginTransmission(44); // transmit to device #44 (0x2c) + // device address is specified in datasheet + Wire.write(byte(0x00)); // sends instruction byte + Wire.write(val); // sends potentiometer value byte + Wire.endTransmission(); // stop transmitting + + val++; // increment value + if(val == 64) // if reached 64th position (max) + { + val = 0; // start over from lowest value + } + delay(500); +} + diff --git a/arduino/libraries/Wire/examples/master_reader/master_reader.ino b/arduino/libraries/Wire/examples/master_reader/master_reader.ino new file mode 100755 index 0000000..4124d7d --- /dev/null +++ b/arduino/libraries/Wire/examples/master_reader/master_reader.ino @@ -0,0 +1,32 @@ +// Wire Master Reader +// by Nicholas Zambetti <http://www.zambetti.com> + +// Demonstrates use of the Wire library +// Reads data from an I2C/TWI slave device +// Refer to the "Wire Slave Sender" example for use with this + +// Created 29 March 2006 + +// This example code is in the public domain. + + +#include <Wire.h> + +void setup() +{ + Wire.begin(); // join i2c bus (address optional for master) + Serial.begin(9600); // start serial for output +} + +void loop() +{ + Wire.requestFrom(2, 6); // request 6 bytes from slave device #2 + + while(Wire.available()) // slave may send less than requested + { + char c = Wire.read(); // receive a byte as character + Serial.print(c); // print the character + } + + delay(500); +} diff --git a/arduino/libraries/Wire/examples/master_writer/master_writer.ino b/arduino/libraries/Wire/examples/master_writer/master_writer.ino new file mode 100755 index 0000000..ccaa036 --- /dev/null +++ b/arduino/libraries/Wire/examples/master_writer/master_writer.ino @@ -0,0 +1,31 @@ +// Wire Master Writer +// by Nicholas Zambetti <http://www.zambetti.com> + +// Demonstrates use of the Wire library +// Writes data to an I2C/TWI slave device +// Refer to the "Wire Slave Receiver" example for use with this + +// Created 29 March 2006 + +// This example code is in the public domain. + + +#include <Wire.h> + +void setup() +{ + Wire.begin(); // join i2c bus (address optional for master) +} + +byte x = 0; + +void loop() +{ + Wire.beginTransmission(4); // transmit to device #4 + Wire.write("x is "); // sends five bytes + Wire.write(x); // sends one byte + Wire.endTransmission(); // stop transmitting + + x++; + delay(500); +} diff --git a/arduino/libraries/Wire/examples/slave_receiver/slave_receiver.ino b/arduino/libraries/Wire/examples/slave_receiver/slave_receiver.ino new file mode 100755 index 0000000..60dd4bd --- /dev/null +++ b/arduino/libraries/Wire/examples/slave_receiver/slave_receiver.ino @@ -0,0 +1,38 @@ +// Wire Slave Receiver +// by Nicholas Zambetti <http://www.zambetti.com> + +// Demonstrates use of the Wire library +// Receives data as an I2C/TWI slave device +// Refer to the "Wire Master Writer" example for use with this + +// Created 29 March 2006 + +// This example code is in the public domain. + + +#include <Wire.h> + +void setup() +{ + Wire.begin(4); // join i2c bus with address #4 + Wire.onReceive(receiveEvent); // register event + Serial.begin(9600); // start serial for output +} + +void loop() +{ + delay(100); +} + +// function that executes whenever data is received from master +// this function is registered as an event, see setup() +void receiveEvent(int howMany) +{ + while(1 < Wire.available()) // loop through all but the last + { + char c = Wire.read(); // receive byte as a character + Serial.print(c); // print the character + } + int x = Wire.read(); // receive byte as an integer + Serial.println(x); // print the integer +} diff --git a/arduino/libraries/Wire/examples/slave_sender/slave_sender.ino b/arduino/libraries/Wire/examples/slave_sender/slave_sender.ino new file mode 100755 index 0000000..d3b238a --- /dev/null +++ b/arduino/libraries/Wire/examples/slave_sender/slave_sender.ino @@ -0,0 +1,32 @@ +// Wire Slave Sender +// by Nicholas Zambetti <http://www.zambetti.com> + +// Demonstrates use of the Wire library +// Sends data as an I2C/TWI slave device +// Refer to the "Wire Master Reader" example for use with this + +// Created 29 March 2006 + +// This example code is in the public domain. + + +#include <Wire.h> + +void setup() +{ + Wire.begin(2); // join i2c bus with address #2 + Wire.onRequest(requestEvent); // register event +} + +void loop() +{ + delay(100); +} + +// function that executes whenever data is requested by master +// this function is registered as an event, see setup() +void requestEvent() +{ + Wire.write("hello "); // respond with message of 6 bytes + // as expected by master +} diff --git a/arduino/libraries/Wire/keywords.txt b/arduino/libraries/Wire/keywords.txt new file mode 100755 index 0000000..dd8366d --- /dev/null +++ b/arduino/libraries/Wire/keywords.txt @@ -0,0 +1,30 @@ +####################################### +# Syntax Coloring Map For Wire +####################################### + +####################################### +# Datatypes (KEYWORD1) +####################################### + +####################################### +# Methods and Functions (KEYWORD2) +####################################### + +begin KEYWORD2 +beginTransmission KEYWORD2 +endTransmission KEYWORD2 +requestFrom KEYWORD2 +onReceive KEYWORD2 +onRequest KEYWORD2 + +####################################### +# Instances (KEYWORD2) +####################################### + +Wire KEYWORD2 +Wire1 KEYWORD2 + +####################################### +# Constants (LITERAL1) +####################################### + diff --git a/arduino/libraries/Wire/library.properties b/arduino/libraries/Wire/library.properties new file mode 100755 index 0000000..8215d9b --- /dev/null +++ b/arduino/libraries/Wire/library.properties @@ -0,0 +1,9 @@ +name=Wire +version=1.0 +author= +maintainer= +sentence=Allows the communication between devices or sensors connected via Two Wire Interface Bus. Specific implementation for nRF52. +paragraph= +category=Communication +url=http://www.arduino.cc/en/Reference/Wire +architectures=* |