diff --git a/dev/ENG_DS_MS5611-01BA03_B3.pdf b/dev/ENG_DS_MS5611-01BA03_B3.pdf deleted file mode 100644 index 4900b12..0000000 Binary files a/dev/ENG_DS_MS5611-01BA03_B3.pdf and /dev/null differ diff --git a/dev/font_3Dprint/logo.svg b/dev/font_3Dprint/logo.svg deleted file mode 100644 index ec61123..0000000 --- a/dev/font_3Dprint/logo.svg +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - diff --git a/dev/font_3Dprint/vyper.ttf b/dev/font_3Dprint/vyper.ttf deleted file mode 100644 index ef13e0f..0000000 Binary files a/dev/font_3Dprint/vyper.ttf and /dev/null differ diff --git a/dev/font_3Dprint/vyper.txt b/dev/font_3Dprint/vyper.txt deleted file mode 100644 index 44e3136..0000000 --- a/dev/font_3Dprint/vyper.txt +++ /dev/null @@ -1,11 +0,0 @@ -Vyper Falcon Truetype Font for Windows - -2008 Iconian Fonts - Daniel Zadorozny - -http://www.iconian.com/ - -This font comes with the following 16 versions: Regular, Italic, Shadow, Shadow Italic, Pro, Pro Italic, Expanded, Expanded Italic, Bold, Bold Italic, Condensed, Condensed Italic, Expanded Bold, Expanded Bold Italic, Laser and Laser Italic. - -This font may be freely distributed and is free for all non-commercial uses. Use of the fonts are at your own risk. This font is e-mailware; that is, if you like it, please e-mail the author at: - -iconian@aol.com diff --git a/dev/fritzing/vario_MS5611.fzz b/dev/fritzing/vario_MS5611.fzz deleted file mode 100644 index 96a0145..0000000 Binary files a/dev/fritzing/vario_MS5611.fzz and /dev/null differ diff --git a/dev/test_MS5611/test_MS5611.ino b/dev/test_MS5611/test_MS5611.ino deleted file mode 100644 index 2468120..0000000 --- a/dev/test_MS5611/test_MS5611.ino +++ /dev/null @@ -1,57 +0,0 @@ -/* - MS5xxx.h - Library for accessing MS5xxx sensors via I2C - Copyright (c) 2012 Roman Schmitz - - This file is part of arduino-ms5xxx. - - arduino-ms5xxx is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - arduino-ms5xxx 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 General Public License for more details. - - You should have received a copy of the GNU General Public License - along with arduino-ms5xxx. If not, see . - -*/ - -#include -#include - -MS5611 sensor(&Wire); - -void setup() { - Serial.begin(115200); - if(sensor.connect()>0) { - Serial.println("Error connecting..."); - delay(500); - setup(); - } -} - -void loop() { - sensor.ReadProm(); - sensor.Readout(); - Serial.print("Temperature [0.01 C]: "); - Serial.println(sensor.GetTemp()/100); - Serial.print("Pressure [Pa]: "); - Serial.println(round(sensor.GetPres())); - test_crc(); - Serial.println("---"); - delay(500); -} - -void test_crc() { - Serial.print("CRC=0x"); - Serial.print(sensor.Calc_CRC4(), HEX); - Serial.print(" (should be 0x"); - Serial.print(sensor.Read_CRC4(), HEX); - Serial.print(")\n"); - Serial.print("Test Code CRC=0x"); - Serial.print(sensor.CRCcodeTest(), HEX); - Serial.println(" (should be 0xB)"); -} diff --git a/dev/test_bluetooth_config/test_bluetooth_config.ino b/dev/test_bluetooth_config/test_bluetooth_config.ino deleted file mode 100644 index 0900c11..0000000 --- a/dev/test_bluetooth_config/test_bluetooth_config.ino +++ /dev/null @@ -1,44 +0,0 @@ - /* -Programme de reception ou config Bluetooth - -AT : check the connection -AT+NAME: Change name. No space between name and command. -AT+BAUD: change baud rate, x is baud rate code, no space between command and code. -AT+PIN: change pin, xxxx is the pin, again, no space. -AT+VERSION - -HC03 HC05 LF+CR -HC04 HC06 no LF+CR -BLE CC2541 without crystal send with LF + CR -HM-10 (CC2541 with crystal) no LF+CR -AT+HELP list of command -http://www.jnhuamao.cn/bluetooth.asp?id=1 -*/ - -#define RX 11 //RX is MOSI (TX module bluetooth) -#define TX 12 //TX is MISO (RX module bluetooth) - -#include -SoftwareSerial BTserial(RX,TX); -byte serialA; // variable de reception de donnée via RX - -void setup() -{ - Serial.begin(9600); - while (!Serial) ; // Needed for native USB port only - Serial.println("Hello !"); - Serial.println("Enter AT commands:"); - // set the data rate for the SoftwareSerial port - BTserial.begin(9600); -} - -void loop() { - if (BTserial.available()) - { - serialA = BTserial.read(); - Serial.write(serialA); - } - if (Serial.available()) - BTserial.write(Serial.read()); - -} diff --git a/dev/test_usb_bluetooth/test_usb_bluetooth.ino b/dev/test_usb_bluetooth/test_usb_bluetooth.ino deleted file mode 100644 index e92c887..0000000 --- a/dev/test_usb_bluetooth/test_usb_bluetooth.ino +++ /dev/null @@ -1,53 +0,0 @@ -#include - -#define RX 11 // not used (TX module bluetooth) -#define TX 12 // MISO on ISCP (RX module bluetooth) -SoftwareSerial BTserial(RX, TX); // RX not connected -// Connect the HC-05 TX to Arduino pin 11 RX (MOSI). -// Connect the HC-05 RX to Arduino pin 12 TX (MISO). -#define USB_SPEED 115200 //define serial transmision speed -#define BLUETOOTH_SPEED 9600 //bluetooth speed (9600 by default) -#define FREQUENCY 10 // freq output in Hz -//#define USB_MODE // uncomment for usb mode -#define BLUETOOTH_MODE // uncomment for bluetooth mode - -void setup() // setup() function to setup all necessary parameters before we go to endless loop() function -{ - #ifdef USB_MODE - Serial.begin(USB_SPEED); // set up arduino serial port - #endif - #ifdef BLUETOOTH_MODE - BTserial.begin(BLUETOOTH_SPEED); // start communication with the HC-05 using 38400 - #endif -} - -uint32_t Pressure=91000; -uint32_t get_time = millis(); - -void loop(void) { - if (millis() >= (get_time + (1000/FREQUENCY))) - { - get_time = millis(); - Pressure -= 1; - if (Pressure<90000) Pressure = 91000; - String str_out = String("LK8EX1,") - +String(Pressure) - +String(",0,9999,0,999,"); - - uint16_t checksum = 0, bi; - for (uint8_t ai = 0; ai < str_out.length(); ai++) - { - bi = (uint8_t)str_out[ai]; - checksum ^= bi; - } - str_out = "$"+str_out+"*"+String(checksum, HEX); - - #ifdef USB_MODE - Serial.println(str_out); - #endif - #ifdef BLUETOOTH_MODE - BTserial.println(str_out); - #endif - - } -}