AN-1203 Ultra-Low Power Wi-Fi Connected IoT Node

Size: px
Start display at page:

Download "AN-1203 Ultra-Low Power Wi-Fi Connected IoT Node"

Transcription

1 AN-1203 Ultra-Low Power Wi-Fi Connected IoT Node Many applications in the Internet of Things (IoT) market require an ultra-low power design because of limited power availability. Some IoT devices are battery operated, so batteries must be periodically replaced. Other devices are powered by energy harvesting, meaning the amount of available power is limited and dependent on external conditions (light, wind, heat, etc.). In both cases, ultra-low power is essential. To achieve ultra-low power consumption, the complete circuit should be asleep (consuming low power) most of the time. It should wake up periodically to acquire data or take action, communicate over a wireless connection, and then go back to sleep. For long periods between waking (e.g. hours), sleep mode energy consumption may exceed active mode consumption. This application note describes a Silego GreenPAK CMIC acting as a wake-up circuit for a Wi-Fi connected IoT node. GreenPAK CMICs can help keep sleep mode consumption ultra-low, as a microcontroller unit (MCU) can offload some functions to the GreenPAK while the MCU goes to sleep. Serial inputs to the GreenPAK come from MCU in the form of a deep sleep signal and sleep time duration, and the GreenPAK output is the wake-up signal for the MCU (or power down signal, depending on the MCU type). The ESP8266 low-cost Wi-Fi chip was selected as the MCU for this application note. The basic diagram is shown in Figure 1. ESP8266 Power Management Figure 1. Ultra-low power IoT node basic diagram The Espressif Systems ESP8266 is a low-cost Wi-Fi chip with full TCP/IP stack and MCU capability. This small size module allows microcontrollers to connect to a Wi-Fi network and make simple TCP/IP connections using Hayes-style commands. Espressif has released a software development kit (SDK) that allows the chip to be programmed, removing the need for a separate microcontroller. ESP8266-based modules have demonstrated themselves as a capable, low-cost, networkable foundation for facilitating end-point IoT development. ESP8266 s flexibility and price point have driven its explosive adoption in recent designs. Engineered for mobile devices, wearable electronics, and IoT applications, ESP8266 achieves low power consumption with a combination of several proprietary technologies. The power saving architecture features three modes of operation: active mode, sleep mode, and deep sleep mode, thus allowing battery-powered designs to run longer. Table 1 shows the differences between the three sleep modes and power down mode.

2 Item Modem Sleep Light Sleep Deep Sleep Power Down Wi-Fi OFF OFF OFF OFF Clock ON OFF OFF OFF RTC ON ON ON OFF CPU ON Pending OFF OFF Current ma ma μa 1 μa Table 1. ESP8266 low power modes In Deep Sleep mode, the chip will turn off Wi-Fi connectivity and data connection, leaving only the RTC module on, to enable periodic wake-ups (consuming μa, depending on the configuration options). In Power Down mode, even the RTC module is turned off. This means chip wake-up must be external, but the current consumption is only 1 μa. Wake-up Circuit Implementation If we turn off the RTC by switching to Power Down mode, and apply an external wake-up circuit consuming only microamps, we can significantly reduce sleep mode current consumption. When a GreenPAK CMIC is applied as an external wake-up circuit, the ESP8266 s internal RTC can be powered off during sleep periods, reducing the sleep current from ~50 μa to ~5 μa (between 2 μa and 10 μa, depending on the GPAK selected). Thus, the total sleep mode current is ~10 times less than using Deep Sleep mode. There are several different development boards for the ESP8266: NodeMCU, Adafruit Feather, and SparkFun Thing are among the most popular. For this implementation, we used the Adafruit Feather Huzzah, although any development board offering access to the CHPD pin and at least three GPIO pins (one for SLEEP and two for I2C) would be suitable. The wake-up circuit is directly connected to the host MCU as shown in Figure 2. This wiring diagram is applicable to all GreenPAKs and all MCUs with a Power Down pin. SDA and SCL wires (used for I2C communication) are optional, used to change the sleep period with I2C enabled GreenPAKs and I2C capable MCUs. POFF is the Power Off output. Figure 2. Connection to Host MCU The wiring diagram for a demo circuit using GreenPAK SLG46537V and Feather Huzzah ESP8266 is shown in Figure 3. This wiring diagram includes a pushbutton for forced wake-up (EWU, External Wake-up), and an additional pin for reading the wake-up cause (LWC, Last Wake-up Cause). Note also that ESP8266 GPIO16 is wired to RST to enable the internal Deep Sleep mode. The GreenPAK wake-up circuit solution is compatible with other ESP8266 sleep options, so the GreenPAK solution becomes yet another sleep mode: let s name it Ultra Deep Sleep. All existing sleep options Modem Sleep, Light Sleep, and Deep Sleep will work with unchanged parameters and performance, on the same device, along with the Ultra Deep Sleep option.

3 Figure 3. GreenPAK Connection to Adafruit Feather Huzzah ESP8266 The timing diagram for the circuit is shown in Figure 4. Signals are shown in positive logic for clarity. Programmable Sleep Period Figure 4. Timing diagram When using the internal ESP8266 Deep Sleep mode, the user can set the wake-up timer in MCU code. A similar feature can be made available using the GreenPAK I2C interface if required. By writing a value to the GPAK CNT/DLY register, the duration of the sleeping period can be (re)programmed from ESP8266 code. The ESP8266 Arduino Library contains Deep Sleep code, enabling the programmer to easily initiate a Deep Sleep period: ESP.deepSleep(sleepTime); where sleeptime is in microseconds. For Ultra Deep Sleep, code is provided to enable similar functionality: ultradeepsleep(sleeptime); where sleeptime is also in microseconds. The ESP8266 will send the sleep signal on the GPIO pin defined in line: #define ULTRADEEPSLEEPPIN 12 Software for I2C communication is based on the Silego library for GreenPAK5 I2C commands by David Riedell (more information on that Arduino library can be found in application note AN-1107: How to Use Silego's Arduino Library with GreenPAK).

4 Additional functions are provided to initiate Ultra Deep Sleep over I2C and read the current timer setup: void ultradeepsleep_i2c(sleeptime); int readsleeptime(); If you are initiating Ultra Deep Sleep over I2C, don t forget to reset the signal back HIGH after wake-up, because sleep is edge-triggered: silego.writei2c(virtual_inputs, 0x01); MCU Offload The MCU can offload some functions to GreenPAK to perform while the MCU goes to sleep. The sleep timer is only the first such function. The pushbutton for forced manual wake-up is a good example of an MCU offload function. As it is asynchronous (the user can push it anytime), keeping the MCU on to await this possible input would be a waste of power. However, the amount of power that GreenPAK uses to scan the pushbutton is negligible, since the circuit is fully static. In the demo circuit, a debounce filter is included to illustrate possible performance improvements at no extra cost. The debounce filter consumes power only upon pushbutton input, so no power is wasted while waiting for input. The debounce filter removes glitches and noise so the MCU gets processed and filtered input. A full list of potential MCU offload functions is out of the scope of this application note, so we ll just mention two: multiple external wake-up sources, and battery voltage monitoring. The pushbutton is one possible source of external wake-up. Some applications feature multiple sources, like radio wake-up, wake-up upon light or sound, etc. There may be a need to prioritize external wake-up sources, or they may be dependent on each other. It is easy to include all these functions within GreenPAK. To know when to initiate controlled shutdown procedure, battery powered IoT devices often need to know when the battery is almost empty. If the MCU wakes up periodically to monitor the battery voltage, that will shorten the battery life, and if the designer applies long sleep periods to save power, the moment of battery depletion might be missed. This function may be fully offloaded to GreenPAK, thanks to the available analog comparators (ACMPs). GreenPAK will simply wake up the MCU when the battery depletion threshold is reached. The ACMP consumes significant current if always on; however, current can be reduced to the microamp range by wake/sleep as presented in Silego app note AN-1025: 1.0uA Battery Voltage Monitor. Imagine your own MCU offload functions, like monitoring multiple power supply sources, or controlling sensors during sleep so that sensor data is ready to read right after the MCU is awoken. With GreenPAK in the picture, simple yet critical functions of your IoT node may be alive and armed, even when there is not enough power for the MCU to run. Last Wake-up Cause In some IoT applications, users may be interested in what caused the last wake-up ( what woke me up? ), for statistics or other purposes. Since the MCU is asleep at the moment of wake-up, it can t acquire the wake-up cause. GreenPAK stores the cause in a flipflop block so the MCU can read it during startup or even later. In the demo circuit, the MCU can read the last wake-up cause on the GPIO pin and/or over I2C communication: int readlastwakeupcause(); int readlastwakeupcause_i2c(); If the GPIO pin is used to read the last wake-up cause, its location is defined in the line: #define LASTWAKEUPCAUSEPIN 13 GreenPAK Design The basic circuit design includes a wake-up timer with programmable sleep duration and a pushbutton for manual wake-up. The internal GreenPAK design schematic is presented in Figure 5.

5 Figure 5. GreenPAK design The awake/asleep state is stored in a resettable DFF block so the sleep period can be interrupted by an external signal (the pushbutton). The DFF state equals the npoff (Power Off) signal: 1 = awake/power on, 0 = asleep/power off. The wake-up timer itself is built with one edge-triggered CNT/DLY block in Delay Mode. The falling edge of the npoff signal is delayed for a sleep period, so the timer is started at the moment the device goes to sleep. When the timer expires, it pulls the nset input of the DFF low to set the DFF/nPOFF and wake up the device. The awake period is not timed, so the sleep period can be started by the falling edge of the SLEEP input. The falling edge is inverted to reset the DFF and switch to the sleep state. The polarity of the signals is adjusted for ESP8266 and can be easily changed to suit other MCUs or modules. A couple of additional logic gates enable alternative sleep triggers (GPIO pin or I2C message) and wake-up triggers (external or timer). One extra DFF captures the wake-up cause: 0 = external wake-up, 1 = timer wake-up. Main features: The design enables initiating the sleep period using both the SLEEP pin or an I2C message Duration of the sleep period is programmable by I2C message Manual wake-up is enabled by pressing the pushbutton Pushbutton input is debounced Debouncing time constant is also programmable through I2C MCU can read current sleep period value through I2C Internal oscillator runs only during sleep periods, thus drawing no current during awake periods Zero external components Design stores the cause of last wake-up event and signals it on a pin MCU can read last wake-up cause on GPIO pin or over I2C The basic design was created with the SLG46537V. Though the design is very simple, it fits into any I2C-enabled GreenPAK. If we remove I2C features, the design can fit into any non-i2c GreenPAK and still offer a wake-up timer and forced wake-up functions. Note that with the presented design, the circuit will ignore sleep commands while external wake-up is active, so keeping the pushbutton pressed will stop the MCU from going to sleep. However, this will not stop it from going to other sleep modes like Deep Sleep or Light Sleep. Once the pushbutton is released, sleep mode is enabled again. Optional Design Modifications and Optimizations

6 For a fixed sleep period and no manual forced wake-up, the circuit design can be simplified. A simple wake-up timer packed into the tiny SLG46108V is presented in Figure 6. Note that even though SLG46108V is the smallest GreenPAK, there are still enough free blocks to implement external wake-up with debouncing filter. Figure 6. Simple wake-up timer design If GPIO pins are at a premium and your circuit design already uses I2C for communication with other peripherals, the SLEEP pin can be avoided by using I2C to initiate the sleep period. Just remove the SLEEP input and wire the timer input to the I2C block. Note that I2C-enabled GreenPAKs have a One Shot option for CNT/DLY blocks, so the DFF is not necessary and the whole wake-up timer can be implemented in just two blocks, including I2C programmable sleep duration. The presented demo circuit powers off the MCU instantly upon receiving the sleep input. If the application requires some delay to be introduced (for example, to let the debug messages pass through serial debug channel) that can be easily done by applying a DELAY block on SLEEP input. The proposed wake-up circuit may be applied to other wireless modules/mcus besides ESP8266, for example Particle Photon or Raspberry Pi, with little or no modification. For MCUs or modules with no power off input option, the power supply can be cut using GreenPAKs with integrated PFET switch available in SLG46116V/117V or SLG46125V. Circuit Performance The main performance concerns are related to sleep period duration and power consumption, shown in Table 2 for different GreenPAK parts. The minimum sleep period is not stated because it is in the microseconds range for all GreenPAK parts, and such short sleep periods are not expected in real world applications. If required, the sleep period can be made even shorter by using the 2 MHz oscillator (instead of 25 khz or LF OSC) for any GreenPAK selected. Only the first row in Table 2 gives the performance of the demo circuit in this app note, based on SLG46537V. Other rows present estimated performance of similar circuits based on other GreenPAK parts. Data in the table is valid for wake-up circuit design similar to the demo circuit presented in this app note, containing only the wake-up timer and a couple of logic gates. If surplus blocks are utilized to add other functions, current consumption may increase, depending on the design. Green fields emphasize performance marks outscoring other parts in that particular domain.

7 Sleep period duration Tolerance I2C Current draw PFET Max 1) resol 2) deb 3) 25 4) abs 5) ton 6) toff 7) years ms years % % μa μa A SLG4653xV > >100 ±2.5% ±12% yes no SLG46108V SLG46110V SLG46116V SLG46117V ~ days ±2.2% ±8% no no ~ days no SLG46140V > >100 ±20% ±20% no no SLG4662xV > >100 ±20% ±20% no no SLG4672xV > >100 no no SLG4658xV > >100 yes Table 2. Circuit Performance It is obvious from Table 2 that the maximum sleep period could be considered unlimited, since it is in the years range. Thus, maximum sleep period should be considered only if the application uses several CNT/DLY blocks for other purposes. Note that in the demo circuit only one CNT/DLY block is used for the timer, and the maximum sleep duration in that case is around twenty minutes. To increase the maximum sleep duration, cascade another CNT/DLY block and update the ultradeepsleep(sleeptime); function accordingly. Performance trade-offs are possible. For example, the SLG46140V exhibits poor ±20% tolerance when using the LF oscillator, but the current draw is exceptionally low at 0.7 μa. Switching to the 25 khz oscillator will improve tolerance, but current draw will rise to ~5 μa, leveling with other GreenPAK parts. Note the versatility of SLG4658xV parts. These parts offer both I2C communication and an integrated PFET power switch, while other parameters match other GreenPAK parts. Design Testing The GreenPAK Emulation Tool included in GreenPAK Designer Development Suite was used to test the CMIC internal design. The logic signal generator was used to simulate the sleep input. Pushbutton input was configured to Button mode to simulate manual pushbutton input. Test configuration for the first test was named Unit test.

8 Figure 7. Unit test configuration I2C tools were used to check internal signal states while debugging, including the states of internal counters. Output signals generated by the GreenPAK circuit are accessible on test pins of the GreenPAK Universal Development Board. For testing purposes, the ESP8266 IoT node was assembled on a breadboard and connected to the GreenPAK Universal Development Board using patch wires. The popular DHT22 temperature/humidity sensor was wired to the Adafruit Feather Huzzah to sense environmental conditions. The schematic diagram is shown in Figure 8. Figure 8. Final test schematic diagram GreenPAK current consumption was measured using a Fluke 45 multimeter. For this configuration, the GreenPAK Universal Development Board must be set to External VDD. The test configuration for final testing was named Final test. A photo is presented in Figure 9.

9 Figure 9. Test Setup Photo The IoT part of testing was based on the Adafruit IO platform, suitable for the Adafruit Feather Huzzah ESP8266 board. A tutorial on how to connect to Adafruit IO can be found on the Adafruit website. Figure 10. Adafruit IO IoT Service Platform Several tests were performed with the DHT22 temp/humidity sensor (please see attached Arduino IDE code). Since the ESP8266 will go to sleep after it publishes the acquired temp/humidity data, only the first test in code will be executed, so comment out all the tests before the one you want to run. Test 1: Standard Deep Sleep at ten second intervals: ESP8266 wakes up, collects temperature and humidity, publishes to Adafruit IO, and then goes into Deep Sleep for ten seconds. Test 2: Ultra Deep Sleep at ten second intervals: same as Test 1, but with Ultra Deep Sleep for ten seconds instead of regular Deep Sleep. Test 3: Ultra Deep Sleep at one, two, three,, ten second intervals to verify (re)programming of the sleep time: ESP8266 wakes up, collects temperature and humidity, publishes it, reads the last wake-up cause and current sleep duration, increases it by one second (up to ten seconds maximum) and goes into Ultra Deep Sleep. If the last wake-up cause is external wake-up, the sleep period is set back to one second. Note that in Test 3, the ESP8266 must read the previous timer value from GreenPAK in order to increase it by one second for the next sleep period. This is because powering down the ESP8266 clears all registers, including the internal RTC RAM.

10 Replace the test code with your own tests or with your application code. // Test 1 // Standard deep sleep at 10 sec interval Serial.println(F("ENTERING DEEP SLEEP MODE!")); ESP.deepSleep(sleepTimeS * ); //Sleep mode, for power save // Test 2 // Ultra deep sleep at 10 sec interval Serial.println(F("ENTERING ULTRA DEEP SLEEP MODE!")); ultradeepsleep(sleeptimes * ); //Ultra Sleep mode, for ultra save // Test 3 // Ultra deep sleep at 1,2,3..10 sec interval, external wakeup resets to 1 if (readlastwakeupcause()==low){ Serial.println(F("External wake-up! Setting to 1.")); sleeptimes = 1; } else { sleeptimes = readsleeptime(); if (sleeptimes < 10) sleeptimes++; } Serial.print(F("ENTERING ULTRA DEEP SLEEP MODE!")); Serial.println(sleepTimeS); ultradeepsleep(sleeptimes * ); //Ultra Sleep mode, for ultra save Power consumption (current consumption) during the sleep periods was measured during ESP8266 Deep Sleep mode (GreenPAK wake-up circuit idle) and with the GreenPAK wake-up circuit. The measured current consumption of SLG46537V at 3.2 V power supply is around 5 μa, almost 40% lower than the 8.4 μa estimate in the datasheet. Measurements show that power consumption during sleep periods is reduced ~10 times with the GreenPAK wake-up circuit applied. GreenPAK Part Selection Once you decide to use GreenPAK as a wake-up timer circuit, there are many options available depending on your application requirements. A quick selection guide is presented in the table below. If you just need the basic wake-up timer features, cells in the first column contain the best parts per criteria shown on the left. If you need more features (like I2C, dual supply, or integrated power switch) they are not available with the parts in the first column, so check out the parts in other columns. Selection criteria Basic features only With I2C options With Dual supply Integrated power switch Lowest power SLG46140V 0.7μA@3.3V SLG46533V 6.6μA@3.3V SLG46621V 1.3μA@3.3V SLG46116V/7V 5.3μA@3.3V Lowest cost SLG46108V $0.135 SLG46534V $0.224 SLG46121V $0.187 SLG46116V/7V $0.241 Smallest size SLG46108V 1.0x1.2mm SLG46533V/4V/7V 2.0x2.2mm SLG46121V 1.6x1.6 mm SLG46116V/7V 1.6x2.5mm Table 3. GreenPAK part selection For parts available in different packages, the smallest package is shown.

11 Key Advantages and Commercial Viability In many IoT applications, the MCU does not run continuously and peripherals may be idle most of the time. For these applications, sleep mode may represent the lion's share of power consumption and is the vital parameter to consider. The overall power consumption can be lowered by keeping the MCU in the various low power modes it supports. If the solution needs lower sleep current than the lowest power mode an MCU supports (ESP8266 consumes ~50 μa in Deep Sleep mode), GreenPAK is a commercially viable solution. Ultra-low sleep current may be required to prolong battery life, reduce power capacity of power harvesting sources, etc. Key advantages over MCU integrated sleep modes include lower sleep power and longer sleep periods. Even for MCUs with ultra-low sleep modes in the microamps range, if periodic wake-ups are needed for some functions, the average power consumption will be higher than if those functions are offloaded to GreenPAK. Key advantages over specialized ICs include lower cost, no external components, serial communications programmable sleep period, and smaller size. For example, the LTC2956 wake-up timer with pushbutton control from Linear Technology offers high performance, yet the GreenPAK solution offers similar or better performance and some additional features at a fraction of the LTC2956 price. Key advantages over a discrete solution include smaller size, no external components, serial communications programmable sleep period, and longer possible sleep periods. Overall advantages include surplus logic for additional MCU offload functions. In the case of the ESP8266 module, if the application sleeps less than two seconds, Light Sleep mode is preferred to Deep Sleep due to the low wake-up time (<3 ms) from Light Sleep mode. If the application sleeps for more than two seconds, then Deep Sleep mode is recommended. A similar note applies for Deep Sleep/Ultra Deep Sleep preference. ESP8266 needs two to three seconds to wake-up from Deep Sleep or Power Down. If the application is in Deep Sleep for less than a hundred seconds, then power consumption during sleep periods amounts to less than 1% of total power consumption, and power savings introduced by Ultra Deep Sleep are minor. When sleep periods are in hours, the total average power consumption could be cut by 50% and battery life nearly doubled. Check the power profile of your circuit design and estimate the power savings to determine if introducing a GreenPAK Ultra Deep Sleep circuit is commercially viable for your application. Conclusion ESP8266 s built-in Deep sleep mode offers ~50 μa current consumption during sleep periods. GreenPAK can put ESP8266 into power off mode where ESP8266 current consumption goes below 1 μa. GreenPAK s current consumption can be kept at less than 5 μa using the 25 khz oscillator for timing, so the total sleep mode current is ~10 times less than using ESP8266 s Deep Sleep mode. The GreenPAK solution offers many benefits: sleep mode current is reduced, longer sleep periods are possible, and surplus logic blocks are available for additional functions. 1) Absolute maximum sleep period duration with all CNT/DLY blocks cascaded. 2) Min step with no clock predivider/divider applied except for SLG46116V/7V and SLG46108V/10V where /8 clock predivider and /64 clock divider are applied to achieve longer max sleep period. 3) Maximum sleep period duration when one 8-bit CNT/DLY block is used to debounce pushbutton input (as in the demo circuit), and all other CNT/DLYs cascaded to form wake-up timer. 4) Sleep period tolerance at outside temperature 25 C and 3.3 V±10% power supply range based on GreenPAK internal clock frequency limits, roughly presented for convenience. For exact data please refer to relevant Silego datasheets. 5) Absolute sleep period tolerance over entire -40 C to +85 C temperature range and 1.8 V to 5.5 V power supply range based on GreenPAK internal clock frequency limits, roughly presented for convenience. For exact data please refer to relevant Silego datasheets. 6) Estimated total GreenPAK current consumption with sleep timer on (oscillator running) at 3.3 V power supply. For estimated current at other power supply levels please refer to relevant Silego datasheets.

12 7) Estimated total GreenPAK current consumption with sleep timer off (oscillator stopped) at 3.3 V power supply. For estimated current at other power supply levels please refer to relevant Silego datasheets. About the Author Name: Vladimir Veljkovic Background: Vladimir Veljkovic has over 25 years experience in professional grade electronics, primarily embedded, real-time, and distributed systems. His professional career evolved from analog & mixed signal (high power uninterruptible power supply systems) to complex HW/SW electronic systems (large scale telecom switch). He is versed in mixed HW/SW development processes with a focus on system architecture design, automated testing, and quality assurance. In recent years, he s been involved in the IoT industry. Contact: appnotes@silego.com Files AN-1203 Ultra-Low Power Wi-Fi Connected IoT Node.gp3- (10 KB) AN-1203 Ultra-Low Power Wi-Fi Connected IoT Node.gp5- (40 KB) AN-1203 Ultra-Low Power Wi-Fi Connected IoT Node.pdf- (1.0 MB) AN-1203.zip- (1.0 MB) See full list of Application Notes

Power Management Implementation

Power Management Implementation 1 Background Power Management Implementation -Santosh Kumar, Anish Arora, OSU, and Young-ri Choi, Mohamed Gouda, University of Texas at Austin 1.1 Sleep Modes There are six power level states in the MCU.

More information

SNJB College of Engineering Department of Computer Engineering

SNJB College of Engineering Department of Computer Engineering 1. Intel s programmable device (8253) facilitates the generation of accurate time delays. a) counter b) timer c) both a & b d) none of these 2. The programmable timer device (8253) contains three independent

More information

Sign Language Interpretation Using Pseudo Glove

Sign Language Interpretation Using Pseudo Glove Sign Language Interpretation Using Pseudo Glove Mukul Singh Kushwah, Manish Sharma, Kunal Jain and Anish Chopra Abstract The research work presented in this paper explores the ways in which, people who

More information

The Diabetic Breathalyzer. Group 13 Jon Brown Christine Sleppy Noah Spenser Edert Geffrard

The Diabetic Breathalyzer. Group 13 Jon Brown Christine Sleppy Noah Spenser Edert Geffrard The Diabetic Breathalyzer Group 13 Jon Brown Christine Sleppy Noah Spenser Edert Geffrard EE EE EE EE Project Motivation 29.1 million Americans have diabetes. Proper management of this disease requires

More information

Computer Applications: An International Journal (CAIJ), Vol.3, No.1, February Mohammad Taye, Mohammad Abu Shanab, Moyad Rayyan and Husam Younis

Computer Applications: An International Journal (CAIJ), Vol.3, No.1, February Mohammad Taye, Mohammad Abu Shanab, Moyad Rayyan and Husam Younis ANYONE CAN TALK TOOL Mohammad Taye, Mohammad Abu Shanab, Moyad Rayyan and Husam Younis Software Engineering Department Information Technology Faculty Philadelphia University ABSTRACT People who have problems

More information

SiS9255. Projected Capacitive. Touch-Screen Micro Processor. Data sheet. Rev. 1.2 August 18, 2015

SiS9255. Projected Capacitive. Touch-Screen Micro Processor. Data sheet. Rev. 1.2 August 18, 2015 SiS9255 Projected Capacitive Touch-Screen Micro Processor Data sheet Rev. 1.2 August 18, 2015 This specification is subject to change without notice. Silicon Integrated Systems Corporation assumes no responsibility

More information

AUTOMATIONWORX. User Manual. UM EN IBS SRE 1A Order No.: INTERBUS Register Expansion Chip IBS SRE 1A

AUTOMATIONWORX. User Manual. UM EN IBS SRE 1A Order No.: INTERBUS Register Expansion Chip IBS SRE 1A AUTOMATIONWORX User Manual UM EN IBS SRE 1A Order No.: 2888741 INTERBUS Register Expansion Chip IBS SRE 1A AUTOMATIONWORX User Manual INTERBUS Register Expansion Chip IBS SRE 1A 06/2006 Designation: Revision:

More information

Heart Attack Detection and Heart Rate Monitoring Using IoT

Heart Attack Detection and Heart Rate Monitoring Using IoT Heart Attack Detection and Heart Rate Monitoring Using IoT Nikunj Patel Princekumar Patel Nehal Patel BSTRACT Nowadays numerous persons are mislaying their life owing to heart attack and shortage of medical

More information

QuantiPhi for RL78 and MICON Racing RL78

QuantiPhi for RL78 and MICON Racing RL78 QuantiPhi for RL78 and MICON Racing RL78 Description: Using cutting-edge model-based design tools, you will design a strategy for a Renesas MICON car, a miniature, autonomous electric vehicle. You will

More information

Complete a large project that embodies the major course topics Project should be simple but expandable The project should include:

Complete a large project that embodies the major course topics Project should be simple but expandable The project should include: CSE 466: Course Project Complete a large project that embodies the major course topics Project should be simple but expandable The project should include: Multiple device communication Deal with constrained

More information

AVR Based Gesture Vocalizer Using Speech Synthesizer IC

AVR Based Gesture Vocalizer Using Speech Synthesizer IC AVR Based Gesture Vocalizer Using Speech Synthesizer IC Mr.M.V.N.R.P.kumar 1, Mr.Ashutosh Kumar 2, Ms. S.B.Arawandekar 3, Mr.A. A. Bhosale 4, Mr. R. L. Bhosale 5 Dept. Of E&TC, L.N.B.C.I.E.T. Raigaon,

More information

Complete a large project that embodies the major course topics Project should be simple but expandable The project should include:

Complete a large project that embodies the major course topics Project should be simple but expandable The project should include: CSE 466: Course Project Complete a large project that embodies the major course topics Project should be simple but expandable The project should include: Multiple device communication Deal with constrained

More information

PLC Fundamentals. Module 4: Programming with Ladder Logic. Academic Services Unit PREPARED BY. January 2013

PLC Fundamentals. Module 4: Programming with Ladder Logic. Academic Services Unit PREPARED BY. January 2013 PLC Fundamentals Module 4: Programming with Ladder Logic PREPARED BY Academic Services Unit January 2013 Applied Technology High Schools, 2013 Module 4: Programming with Ladder Logic Module Objectives

More information

PoDL Tutorial. Dogs at the IEEE?

PoDL Tutorial. Dogs at the IEEE? PoDL Tutorial Dogs at the IEEE? Agenda What is PoDL? Quick Overview of PoDL Operation Walk Through the Draft PoDL = PoE for Single-Pair Ethernet 100BASE-T1 + PoDL: 100M and power over a single 24ga twisted

More information

Development of an Electronic Glove with Voice Output for Finger Posture Recognition

Development of an Electronic Glove with Voice Output for Finger Posture Recognition Development of an Electronic Glove with Voice Output for Finger Posture Recognition F. Wong*, E. H. Loh, P. Y. Lim, R. R. Porle, R. Chin, K. Teo and K. A. Mohamad Faculty of Engineering, Universiti Malaysia

More information

External Interrupts Pin Change Interrupts

External Interrupts Pin Change Interrupts ECE3411 Fall 2015 Lecture 3c. External Interrupts Pin Change Interrupts Marten van Dijk, Syed Kamran Haider Department of Electrical & Computer Engineering University of Connecticut Email: vandijk, syed.haider@engr.uconn.edu

More information

Internet Hub WLAN/3G/4G. Internet Cloud. Figure 1: U-Healthcare system overview

Internet Hub WLAN/3G/4G. Internet Cloud. Figure 1: U-Healthcare system overview Extending Battery Life of Wireless medical devices are becoming increasingly more prevalent for remotely monitoring and logging vital signs to assist in the detection and treatment of diseases and medical

More information

The Tiny is engineered for the use of a single Li-Ion rechargeable battery. (Do not supply the electronic by more than 4.5V.

The Tiny is engineered for the use of a single Li-Ion rechargeable battery. (Do not supply the electronic by more than 4.5V. dicodes E-Cigarette Control Unit Tiny : Technical Specification and Manual 1. Common The dicodes Tiny is equipped with a small 2-digit 7-segment display and a single button which can be used to adjust

More information

Design of the HRV Analysis System Based on AD8232

Design of the HRV Analysis System Based on AD8232 207 3rd International Symposium on Mechatronics and Industrial Informatics (ISMII 207) ISB: 978--60595-50-8 Design of the HRV Analysis System Based on AD8232 Xiaoqiang Ji,a, Chunyu ing,b, Chunhua Zhao

More information

Coach Morse - Morse Code Practice Unit

Coach Morse - Morse Code Practice Unit Coach Morse - Morse Code Practice Unit AA1PJ The following describes the features and operation of Coach Morse, a Morse code practice unit. This device should help you learn and improve the speed at which

More information

E SERIES. Contents CALIBRATION PROCEDURE. Version 2.0

E SERIES. Contents CALIBRATION PROCEDURE. Version 2.0 CALIBRATION PROCEDURE E SERIES Version 2.0 Contents Introduction Document Scope... 2 Calibration Overview... 3 What Is Calibration?... 3 Why Calibrate?... 3 How Often Should You Calibrate?... 3 What Can

More information

Quick guide to connectivity and the Interton Sound app

Quick guide to connectivity and the Interton Sound app Quick guide to connectivity and the Interton Sound app Content Compatibility: Hearing aids and mobile devices... 4 Get started with your iphone, ipad or ipod touch... 6 Pair with your Interton hearing

More information

Connectivity guide for ReSound Smart 3D app

Connectivity guide for ReSound Smart 3D app Connectivity guide for ReSound Smart 3D app Table of contents Introduction to ReSound Smart Hearing Aids... 3 Mobile Devices that Work with ReSound Smart Hearing Aids... 3 Connectivity and ReSound Smart

More information

When designing with these products it is important that the Designer take note of the following considerations:

When designing with these products it is important that the Designer take note of the following considerations: Applicable Products HMC820LP6CE HMC821LP6CE HMC822LP6CE HMC824LP6CE HMC826LP6CE HMC828LP6CE HMC829LP6GE HMC830LP6GE HMC831LP6CE HMC832LP6GE HMC833LP6GE HMC834LP6GE HMC836LP6CE HMC837LP6CE HMC838LP6CE HMC839LP6CE

More information

>Talko. Have your modular speak out the CV, the LPC, 8 bits, vintage way. Page 1

>Talko. Have your modular speak out the CV, the LPC, 8 bits, vintage way. Page 1 >Talko Have your modular speak out the CV, the LPC, 8 bits, vintage way. Page 1 Table of Contents 1Short description...3 2Technical details... 3 3Banks... 4 4Panel... 4 4.1Mode Switch...4 4.2Sound jack

More information

MAC Sleep Mode Control Considering Downlink Traffic Pattern and Mobility

MAC Sleep Mode Control Considering Downlink Traffic Pattern and Mobility 1 MAC Sleep Mode Control Considering Downlink Traffic Pattern and Mobility Neung-Hyung Lee and Saewoong Bahk School of Electrical Engineering & Computer Science, Seoul National University, Seoul Korea

More information

International Journal of Advance Engineering and Research Development. Gesture Glove for American Sign Language Representation

International Journal of Advance Engineering and Research Development. Gesture Glove for American Sign Language Representation Scientific Journal of Impact Factor (SJIF): 4.14 International Journal of Advance Engineering and Research Development Volume 3, Issue 3, March -2016 Gesture Glove for American Sign Language Representation

More information

PHM-100 PORTABLE HANDHELD TRANSDUCER INDICATOR OPERATORS MANUAL. Transducer Techniques R

PHM-100 PORTABLE HANDHELD TRANSDUCER INDICATOR OPERATORS MANUAL. Transducer Techniques R PHM-100 PORTABLE HANDHELD TRANSDUCER INDICATOR OPERATORS MANUAL Transducer Techniques R 42480 RIO NEDO, TEMECULA, CA 92590 (909) 719-3965 FAX (909) 719-3900 URL: http://www.ttloadcells.com E-mail: tti@ttloadcells.com

More information

Dosimeter Setting Device

Dosimeter Setting Device Instruction Manual Dosimeter Setting Device For Electronic Personal Dosimeter Dose-i (Unit:Sv, Version:1.05 English) WTA529748 a 1 / 38 Foreword Thank you for purchasing the Dosimeter Setting Device; a

More information

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF MECHANICAL ENGINEERING QUESTION BANK. Subject Name: ELECTRONICS AND MICRIPROCESSORS UNIT I

KINGS COLLEGE OF ENGINEERING DEPARTMENT OF MECHANICAL ENGINEERING QUESTION BANK. Subject Name: ELECTRONICS AND MICRIPROCESSORS UNIT I KINGS COLLEGE OF ENGINEERING DEPARTMENT OF MECHANICAL ENGINEERING QUESTION BANK Subject Name: ELECTRONICS AND MICRIPROCESSORS UNIT I Year/Sem:II / IV PART-A(2 MARKS) SEMICONDUCTORS AND RECTIFIERS 1. What

More information

Dosimeter Setting Device System NRZ

Dosimeter Setting Device System NRZ User s Manual Dosimeter Setting Device System NRZ For Dosimeter NRF series (Units: msv Version:0.26 English) TA5C0903 b 1 / 50 Preface Thank you for purchasing the Dosimeter Setting Device; a product by

More information

Connectivity guide for. BeMore app

Connectivity guide for. BeMore app Connectivity guide for BeMore app Compatible AGXR aids These AGXR aids work with the BeMore app. If you re in doubt, please ask your hearing care professional. Table of contents Introduction to AGXR hearing

More information

An Energy Efficient Sensor for Thyroid Monitoring through the IoT

An Energy Efficient Sensor for Thyroid Monitoring through the IoT An Energy Efficient Sensor for Thyroid Monitoring through the IoT P. Sundaravadivel 1, S. P. Mohanty 2, E. Kougianos 3, U. Albalawi 4. NanoSystem Design Laboratory (NSDL, http://nsdl.cse.unt.edu) University

More information

Advanced in vitro exposure systems

Advanced in vitro exposure systems Advanced in vitro exposure systems VITROCELL VC 1/7 SMOKING MACHINE Features for e-cigarettes VITROCELL VC 1/7 SMOKING MACHINE Linear smoking machine with high tech features square puff profiles higher

More information

Standard Products ACT15530 CMOS Manchester Encoder / Decoder May 16, 2005

Standard Products ACT15530 CMOS Manchester Encoder / Decoder  May 16, 2005 Standard Products ACT15530 CMOS Manchester Encoder / Decoder www.aeroflex.com/avionics May 16, 2005 FEATURES MIL-STD-1553 Compatible 1.25 Megabit/sec Maximum Data Rate Sync Identification and Lock-in Clock

More information

Transitioning from the CS4362 to the CS4362A or CS4365

Transitioning from the CS4362 to the CS4362A or CS4365 Transitioning from the CS to the CSA or CS. Introduction This application note describes how to transition easily to the CS or CSA from an existing design that uses the CS. The CSA was designed to give

More information

Diabetes Management App. Instruction Manual

Diabetes Management App. Instruction Manual Diabetes Management App Instruction Manual Accu-Chek Connect Diabetes Management App Overview The Accu-Chek Connect diabetes management app (hereafter referred to as the app) is designed to help you: Transfer

More information

Quick guide to connectivity and the ReSound Smart 3D app

Quick guide to connectivity and the ReSound Smart 3D app Quick guide to connectivity and the ReSound Smart 3D app 2 Content Compatibility: Hearing aids and mobile devices...4 Get started with your iphone, ipad or ipod touch...6 Pair with your ReSound Smart Hearing

More information

Heart Attack Detection Walking Stick with Emergency Help

Heart Attack Detection Walking Stick with Emergency Help Heart Attack Detection Walking Stick with Emergency Help Priyanga V 1, Anish Christo P 2, Krithiga Murugavel 3, Shvetha Senthil Kumar 4, Electronics and Communication Department, College of Engineering,Guindy,

More information

GLUCOMETER: High Level Design

GLUCOMETER: High Level Design Fall 2014 High Level Design 1 GLUCOMETER: High Level Design Electrical Engineers: Michael Williams, Christopher Homa, Matthew Henne Mechanical Engineer: Ish Amagashie Software Engineer: Sofyan Saputra

More information

F²MC-8FX FAMILY MB95200H/210H SERIES HOW TO DO CR TRIMMING 8-BIT MICROCONTROLLER APPLICATION NOTE

F²MC-8FX FAMILY MB95200H/210H SERIES HOW TO DO CR TRIMMING 8-BIT MICROCONTROLLER APPLICATION NOTE Fujitsu Microelectronics (Shanghai) Co., Ltd Application Note MCU-AN-500014-E-10 F²MC-8FX FAMILY 8-BIT MICROCONTROLLER MB95200H/210H SERIES HOW TO DO CR TRIMMING APPLICATION NOTE CR trimming Operation

More information

>Talko _. Die Stimme der Maschinen. Page 1

>Talko _. Die Stimme der Maschinen. Page 1 >Talko _ Die Stimme der Maschinen Page 1 Table of Contents 1 Short description...3 2 Technical details... 3 3 Banks... 4 4 Panel... 4 4.1 Sound jack & pot... 4 4.2 Gate jack...4 4.3 Mode Switch...5 4.4

More information

One intelligent solution

One intelligent solution One intelligent solution System One sleep therapy platform gets even smarter with advanced intelligence for optimum care and easier patient management. Industry-leading enhancements and innovations The

More information

Presenter s name. STM8 StartUp

Presenter s name. STM8 StartUp Presenter s name STM8 StartUp 1 14 June 2016 HW and SW tools HW: STM8S-Discovery SW: STM STVP + STVD STM8S/A Library Cosmic C Compiler ST-LINK-v2 (Optional) LINK Useful links are here 2 14 June 2016 Installations

More information

AN Getting Started with PSoC 4 BLE. Contents

AN Getting Started with PSoC 4 BLE. Contents Getting Started with PSoC 4 BLE AN91267 Author: Krishnaprasad M V (KRIS) Associated Project: No Associated Part Family: CY8C41x7-BL, CY8C42x7-BL Software Version: PSoC Creator 3.1 Related Application Notes:

More information

STAY IN CHARGE STAY IN THE MOMENT

STAY IN CHARGE STAY IN THE MOMENT STAY IN CHARGE STAY IN THE MOMENT ALL THE AMAZING FEATURES OF WIDEX BEYOND NOW RECHARGEABLE Now the world s best sounding made-for-iphone hearing aid is available with the convenience of rechargeability

More information

Squid: Exercise Effectiveness and. Muscular Activation Tracking

Squid: Exercise Effectiveness and. Muscular Activation Tracking 1 Squid: Exercise Effectiveness and Muscular Activation Tracking Design Team Trevor Lorden, Adam Morgan, Kyle Peters, Joseph Sheehan, Thomas Wilbur Interactive Media Alexandra Aas, Alexandra Moran, Amy

More information

SLEEP IMPROVING WRISTBAND. Item No Owner s Guide

SLEEP IMPROVING WRISTBAND. Item No Owner s Guide SLEEP IMPROVING WRISTBAND Item No. 205350 Owner s Guide Thank you for purchasing the Sharper Image Sleep Improving Wristband. Based on ancient Chinese acupuncture principles, this biofeedback device uses

More information

Manual 2500E NRT Display Unit

Manual 2500E NRT Display Unit Manual 2500E NRT Display Unit Revision History File name / Revision Date Authors & Change Details Checked/ Approved Unidata Manual - 2500E NRT Display Unit Release 1.0 20 10 10 DM- First issue MS Unidata

More information

PFL780 PCB Fault Locator

PFL780 PCB Fault Locator PFL780 PCB Fault Locator Successful Faultfinding on assembled PCBs Effective in Production & Manufacturing Proven in Service & Repair Ideal for CEMs making small to medium batches polarinstruments.com

More information

Tune in on life with SCOLAbuddy. A new fm receiver from Widex

Tune in on life with SCOLAbuddy. A new fm receiver from Widex Tune in on life with SCOLAbuddy A new fm receiver from Widex Meet your new buddy The latest member of the Scola FM family The successful Widex SCOLA FM product series has acquired a new family member:

More information

Test Equipment Depot Washington Street Melrose, MA TestEquipmentDepot.com

Test Equipment Depot Washington Street Melrose, MA TestEquipmentDepot.com Test Equipment Depot - 800.517.8431-99 Washington Street Melrose, MA 02176 TestEquipmentDepot.com Table of Contents Table of Contents... iii Preface... viii Getting Started... 9 0.1 Breadboard... 9 0.2

More information

One intelligent solution

One intelligent solution One intelligent solution System One sleep therapy platform gets even smarter with advanced intelligence for optimum care and easier patient management. Industry-leading enhancements and innovations The

More information

Connectivity guide for ReSound Smart 3D app

Connectivity guide for ReSound Smart 3D app Connectivity guide for ReSound Smart 3D app Table of contents Introduction to ReSound Smart Hearing Aids... 3 Mobile Devices that Work with ReSound Smart Hearing Aids... 3 Connectivity and ReSound Smart

More information

Figure 1: EVKT-MACOM with EVMA-CONN Daughter Board

Figure 1: EVKT-MACOM with EVMA-CONN Daughter Board EVKT-MACOM MagAlpha Communication Kit DESCRIPTION The EVKT-MACOM is a communication kit for the MagAlpha magnetic position sensor family. The EVKT-MACOM offers a seamless connection and operation with

More information

Captus 3000 Thyroid Uptake And Well System The Ultimate... User Friendly... Intuitive

Captus 3000 Thyroid Uptake And Well System The Ultimate... User Friendly... Intuitive Captus 3000 Thyroid Uptake And Well System The Ultimate... User Friendly... Intuitive Performing Thyroid Uptake measurements has never been easier. The Captus 3000 combines a software program with the

More information

Hearing Control App User Guide

Hearing Control App User Guide Hearing Control App User Guide Introduction to Audibel s Smart Hearing Aids Android Listed below are Audibel s smartphone compatible hearing aids that work with the TruLink Hearing Control app: We are

More information

BC380. The New Standard in Body Composition Analysis BODY COMPOSITION ANALYZER

BC380. The New Standard in Body Composition Analysis BODY COMPOSITION ANALYZER www.accuniq.com BC380 The New Standard in Body Composition Analysis BODY COMPOSITION ANALYZER Multi-Frequency Segmental Body Composition Analysis using BIA Technology 02 Product Introduction ACCUNIQ BC380

More information

Advanced in vitro exposure systems VITROCELL VC 1 SMOKING MACHINE

Advanced in vitro exposure systems VITROCELL VC 1 SMOKING MACHINE Advanced in vitro exposure systems VITROCELL VC 1 SMOKING MACHINE Options for e-cigarettes VITROCELL VC 1 SMOKING MACHINE Manual smoking machine with high tech features square puff profiles higher puff

More information

Thrive Hearing Control Application

Thrive Hearing Control Application Thrive Hearing Control Application Apple Advanced Current Memory Thrive Virtual Assistant Settings User Guide Connection Status Edit Memory/Geotag Body Score Brain Score Thrive Wellness Score Heart Rate

More information

Holtek e-link Q&A. 一 When encountering problemsduring e-link programming and emulation first check the following:... 2

Holtek e-link Q&A. 一 When encountering problemsduring e-link programming and emulation first check the following:... 2 Holtek e-link Q&A 一 When encountering problemsduring e-link programming and emulation first check the following:... 2 1 Check if the USB cable is the original Holtek one?... 2 2 Check if the e-link emulator

More information

ENVIRONMENTAL REINFORCEMENT LEARNING: A Real-time Learning Architecture for Primitive Behavior Refinement

ENVIRONMENTAL REINFORCEMENT LEARNING: A Real-time Learning Architecture for Primitive Behavior Refinement ENVIRONMENTAL REINFORCEMENT LEARNING: A Real-time Learning Architecture for Primitive Behavior Refinement TaeHoon Anthony Choi, Eunbin Augustine Yim, and Keith L. Doty Machine Intelligence Laboratory Department

More information

Set Up SOS Video Chat and Screen-Sharing

Set Up SOS Video Chat and Screen-Sharing Set Up SOS Video Chat and Screen-Sharing Salesforce, Spring 17 @salesforcedocs Last updated: March 11, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Using the CFS Infrastructure

Using the CFS Infrastructure CHAPTER 13 The Cisco MDS SAN-OS software uses the Cisco Fabric Services (CFS) infrastructure to enable efficient database distribution and to foster device flexibility. It simplifies SAN provisioning by

More information

Demo Mode. Once you have taken the time to navigate your RPM 2 app in "Demo mode" you should be ready to pair, connect, and try your inserts.

Demo Mode. Once you have taken the time to navigate your RPM 2 app in Demo mode you should be ready to pair, connect, and try your inserts. Demo Mode RPM 2 is supported with a "demonstration (Demo) mode" that easily allows you to navigate the app. Demo mode is intended for navigation purposes only. Data in Demo mode are simply random data

More information

RELEASED. first steps. Icon Icon name What it means

RELEASED. first steps. Icon Icon name What it means Icon Icon name What it means Connection The connection icon appears green when the Sensor feature is on and your transmitter is successfully communicating with your pump. The connection icon appears gray

More information

User s Manual for Eclipse(AccuCap)

User s Manual for Eclipse(AccuCap) InnoCaption Agent Program User s Manual for Eclipse(AccuCap) VER 2.1.4 InnoCaptionAgent Ver 2.1.4 2015-10-12 InnoCaption 1 / 24 InnoCaption Agent User s Manual for Eclipse Table of Contents 1. GENERAL...

More information

Cross-Domain Development Kit XDK110 Platform for Application Development

Cross-Domain Development Kit XDK110 Platform for Application Development BLE Guide Cross-Domain Development Kit Platform for Application Development Bosch Connected Devices and Solutions : BLE Guide Document revision 2.0 Document release date 17.08.17 Document number Workbench

More information

Effects of Flashing Lights and Beeping Tones on Subjective Time Estimation

Effects of Flashing Lights and Beeping Tones on Subjective Time Estimation ME 224 EXPERIMENTAL ENGINEERING Effects of Flashing Lights and Beeping Tones on Subjective Time Estimation ME 224 Final Project Report Aamir Habib, Yoke Peng Leong, Yuchen Yang 12/3/2011 Contents Abstract...

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions How does the SMRT-Y work? The SMRT-Y sensor accurately measures the moisture level in the soil. When the soil is dry, the SMRT-Y allows the irrigation controller to water as

More information

TruLink Hearing Control App User Guide

TruLink Hearing Control App User Guide TruLink Hearing Control App User Guide TruLink Hearing Control App User Guide GET CONNECTED In order to use the TruLink Hearing Control app, you must first pair your hearing aids with your ios device.

More information

Lightened Dream. Quick Start Guide Lightened Dream is a dream journal designed to wake you up in your dreams.

Lightened Dream. Quick Start Guide Lightened Dream is a dream journal designed to wake you up in your dreams. Lightened Dream Quick Start Guide Lightened Dream is a dream journal designed to wake you up in your dreams. Follow its directions and you will be bending the laws of reality while getting a good night

More information

ENDODONTICS ENDODONTICS

ENDODONTICS ENDODONTICS 158 159 & Heads Smarter and Safer Cordless Endodontic Handpiece with Torque Control and Auto Reverse Miniature Head For Ni-Ti files (ø2.35) Push Button Chuck MP-F20R MP-F16R MP-F10R 20:1 / 16:1 / 10:1

More information

Recap DVS. Reduce Frequency Only. Reduce Frequency and Voltage. Processor Sleeps when Idle. Processor Always On. Processor Sleeps when Idle

Recap DVS. Reduce Frequency Only. Reduce Frequency and Voltage. Processor Sleeps when Idle. Processor Always On. Processor Sleeps when Idle Energy Continued Recap DVS Reduce Frequency Only Reduce Frequency and Voltage Processor Sleeps when Idle Processor Always On Processor Sleeps when Idle Bad idea! Good idea! Should we do frequency scaling

More information

[Ashwini*, 5(4): April, 2016] ISSN: (I2OR), Publication Impact Factor: 3.785

[Ashwini*, 5(4): April, 2016] ISSN: (I2OR), Publication Impact Factor: 3.785 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY GESTURE VOCALIZER FOR DEAF AND DUMB Kshirasagar Snehal P.*, Shaikh Mohammad Hussain, Malge Swati S., Gholap Shraddha S., Mr. Swapnil

More information

Revised Wakeup and Sleep Scheme for PoDL. Andrew Gardner Linear Technology

Revised Wakeup and Sleep Scheme for PoDL. Andrew Gardner Linear Technology Revised Wakeup and Sleep Scheme for PoDL Andrew Gardner Linear Technology Presentation Objectives Propose a revised wakeup and sleep scheme for PoDL that addresses concerns of economic and technical feasibility

More information

THE SMARTEST RECHARGEABLE

THE SMARTEST RECHARGEABLE Introducing Muse iq Rechargeable THE SMARTEST RECHARGEABLE Hearing Technology R We ve reimagined rechargeable INTRODUCING R The hearing technology you ve been waiting for. From setup and design to daily

More information

Flu season. Making the most of online appointments. August 2018

Flu season. Making the most of online appointments. August 2018 Flu season Making the most of online appointments August 2018 Dear colleagues, Over the last four years GP Online Services have been implemented by practices across England. Over 14 million patients -

More information

Accessing the "Far World": A New Age of Connectivity for Hearing Aids by George Lindley, PhD, AuD

Accessing the Far World: A New Age of Connectivity for Hearing Aids by George Lindley, PhD, AuD Accessing the "Far World": A New Age of Connectivity for Hearing Aids by George Lindley, PhD, AuD Mobile phones, PDAs, computers, televisions, music players, Bluetooth devices and even the other hearing

More information

ultrasound your way Sharp images. Easy workflow. Fast support. SonixTablet Mountable ultrasound system with a 19 touch screen

ultrasound your way Sharp images. Easy workflow. Fast support. SonixTablet Mountable ultrasound system with a 19 touch screen ultrasound your way Sharp images. Easy workflow. Fast support. SonixTablet Mountable ultrasound system with a 19 touch screen SonixTablet Save space without compromising performance SonixTablet is a compact

More information

Graphical User Interface for Windows for MCM Module

Graphical User Interface for Windows for MCM Module Page 1 of 8 Installation:- Please ensure that you have the latest updated GUI and download the GUIv.x.x.x.x.ZIP from our website. Extract the folder to a temporary location (These files can be deleted

More information

THE SMARTEST RECHARGEABLE

THE SMARTEST RECHARGEABLE Introducing Muse iq Rechargeable THE SMARTEST RECHARGEABLE Hearing Technology R INTRODUCING R The hearing technology you ve been waiting for. We ve reimagined rechargeable From setup and design to daily

More information

Phonak Fast Facts. Audéo B-Direct

Phonak Fast Facts. Audéo B-Direct Phonak Fast Facts Audéo B-Direct Phonak is introducing Audéo B-Direct, a new extension of the successful RIC hearing aid family for mild to severe hearing loss. Powered by Phonak Belong technology, Phonak

More information

1. Description. mchf15 Project Configuration Report Project. Generated with: STM32CubeMX Date 02/07/ MCU. MCU Pin number 144

1. Description. mchf15 Project Configuration Report Project. Generated with: STM32CubeMX Date 02/07/ MCU. MCU Pin number 144 1. Description 1.1. Project Project Name mchf15 Board Name mchf15 Generated with: STM32CubeMX 4.19.0 Date 02/07/2017 1.2. MCU MCU Series STM32F7 MCU Line STM32F7x7 MCU name STM32F767ZITx MCU Package LQFP144

More information

The Phalanx. Featuring Evolv DNA250 Technology. ***Keep Out of reach of children. This device is for persons 18yrs of age or older ***

The Phalanx. Featuring Evolv DNA250 Technology. ***Keep Out of reach of children. This device is for persons 18yrs of age or older *** The Phalanx Featuring Evolv DNA250 Technology ***Keep Out of reach of children. This device is for persons 18yrs of age or older *** Congratulations on your purchase of the Phalanx DNA250 temperature protected

More information

For Electric Personal Dosimete Dose-i

For Electric Personal Dosimete Dose-i Instruction Manual Dosime eter Setting Device For Electric Personal Dosimete er Dose-i (Unit:rem, Version:1.05 English) Issued on March 2015 WTA529893 1 / 38 Foreword Thank you for purchasing the Dosimeter

More information

Listen Only. Dual. CutOff. FM Radio. New! Dual Pro. FM Radio CutOff Listen Only. the complete hearing protector

Listen Only. Dual. CutOff. FM Radio. New! Dual Pro. FM Radio CutOff Listen Only. the complete hearing protector Listen Only CutOff FM Radio Dual New! Dual FM Radio CutOff Listen Only the complete hearing protector Sordin offers high quality h protectors at excellent value for your spare-time and professional use

More information

Product Model #: Digital Portable Radio XTS 5000 (Std / Rugged / Secure / Type )

Product Model #: Digital Portable Radio XTS 5000 (Std / Rugged / Secure / Type ) Rehabilitation Act Amendments of 1998, Section 508 Subpart 1194.25 Self-Contained, Closed Products The following features are derived from Section 508 When a timed response is required alert user, allow

More information

myphonak app User Guide

myphonak app User Guide myphonak app User Guide Getting started myphonak is an app developed by Sonova, the world leader in hearing solutions based in Zurich, Switzerland. Read the user instructions thoroughly in order to benefit

More information

Project: Feedback Systems for Alternative Treatment of Obstructive Sleep Apnea

Project: Feedback Systems for Alternative Treatment of Obstructive Sleep Apnea Project: Feedback Systems for Alternative Treatment of Obstructive Sleep Apnea Idea: Create auditory and visual feedback systems to relate the amount of force back to the person exerting the force Potential

More information

Qualys PC/SCAP Auditor

Qualys PC/SCAP Auditor Qualys PC/SCAP Auditor Getting Started Guide November 15, 2017 COPYRIGHT 2011-2017 BY QUALYS, INC. ALL RIGHTS RESERVED. QUALYS AND THE QUALYS LOGO ARE REGISTERED TRADEMARKS OF QUALYS, INC. ALL OTHER TRADEMARKS

More information

Interfacing the Enhanced Parallel Port Version 1.0

Interfacing the Enhanced Parallel Port Version 1.0 Interfacing the Enhanced Parallel Port Version 1.0 Disclaimer : While every effort has been made to make sure the information in this document is correct, the author can not be liable for any damages whatsoever

More information

A Portable Smart Band Implementation for Heart Patients in Critical Conditions

A Portable Smart Band Implementation for Heart Patients in Critical Conditions A Portable Smart Band Implementation for Heart Patients in Critical Conditions Supreeth Ravi 1, Student CSE Department PESIT Bangalore South Campus, Bangalore, Karnataka, India Aditi Anomita Mohanty 3,

More information

Speech to Text Wireless Converter

Speech to Text Wireless Converter Speech to Text Wireless Converter Kailas Puri 1, Vivek Ajage 2, Satyam Mali 3, Akhil Wasnik 4, Amey Naik 5 And Guided by Dr. Prof. M. S. Panse 6 1,2,3,4,5,6 Department of Electrical Engineering, Veermata

More information

axbo research 3.X..the little sleep laboratory

axbo research 3.X..the little sleep laboratory axbo research 3.X..the little sleep laboratory With axbo research you can evaluate the movement data which is saved in your axbo and view it graphically to become better acquainted with your own sleeping

More information

GLOOKO FOR ios MIDS USER GUIDE

GLOOKO FOR ios MIDS USER GUIDE GLOOKO FOR ios MIDS USER GUIDE October 2018 IFU-0001 13 Glooko MIDS is cleared for US only Rx only TABLE OF CONTENTS TABLE OF CONTENTS MOBILE INSULIN DOSING SYSTEM (MIDS)... 2 Intended Use... 2 Warnings...

More information

Evolve 3 & 5 Service Manual

Evolve 3 & 5 Service Manual Evolve 3 & 5 Service Manual 1 Product Browse 2 Contents CHAPTER 1: SERIAL NUMBER LOCATION... 5 CHAPTER 2: CONSOLE INSTRUCTIONS 2.1 Console Overview... 6 2.1.1 Evolve 3 Console Overview... 6 2.1.2 Evolve

More information

Literature Review Aarthi Sivasankar

Literature Review Aarthi Sivasankar Literature Review Aarthi Sivasankar Table of Contents Importance of Blood Pressure How Blood Pressure Monitoring Devices Work Measurements Involved in Taking Blood Pressure Materials Needed for Taking

More information

Titronics Range of Motion Hardware & Software Installation

Titronics Range of Motion Hardware & Software Installation Titronics Range of Motion Hardware & Software Installation Step 1 Titronics ROM Software Installation Insert the Titronics Flash Drive into a USB port. Open the Flash Drive and click on Titronics.exe Click

More information

Thrive Hearing Control Application

Thrive Hearing Control Application Thrive Hearing Control Application Android Advanced Current Memory Thrive Assistant Settings User Guide Connection Status Edit Memory/Geotag Body Score Brain Score Thrive Wellness Score Heart Rate Mute

More information