Browsing by Issue Date, starting with "2019-02-15"
Now showing 1 - 2 of 2
Results Per Page
Sort Options
- Avaliação da satisfação dos cuidados prestados à pessoa idosa no lar e centro de dia Maria Ribeiro Vicente dos Balurcos, AlcoutimPublication . Estevão, Patrícia Alexandra Fonseca; Luísa, Cláudia Cristina GuerreiroHoje em dia, em Portugal, os dados revelam que o número de pessoas idosas é superior ao das crianças a nascer, no entanto o índice de longevidade da população aumentou. Em contrapartida, ocorreu ainda um aumento no grau de dependência dos idosos. Para dar resposta às suas necessidades, existem diversas respostas sociais, privilegiando-se neste estudo, as Estruturas Residenciais para Idosos (ERPIS), antes designadas por lares de idosos, uma das mais procuradas e utilizadas no país devido à sua oferta de apoio permanente. Sendo uma resposta tão requisitada e necessária atualmente, todos os que nestas instituições exercem funções devem garantir que a pessoa idosa tem acesso aos melhores cuidados e devem assegurar a monotorização dos mesmos para que estejam de acordo com as necessidades, gostos e expetativas do cliente. Neste sentido, também cada vez mais as ERPIS são sujeitas à implementação de sistemas de qualidade. Nesta investigação privilegiou-se a opinião dos clientes sobre os cuidados/serviços prestados no Lar e Centro de Dia Maria Ribeiro Vicente dos Balurcos no Concelho de Alcoutim. Foi realizado um estudo de caso descritivo, com perspetiva mista, com recurso a análise documental, realização de inquéritos com questões abertas e fechadas e observação. Ao se identificar o grau de satisfação dos clientes/responsáveis sobre os cuidados/serviços prestados na instituição é possível melhorar a intervenção, se necessário. Concluiu-se que relativamente à satisfação dos clientes e responsáveis com os cuidados prestados, todos os serviços foram avaliados positivamente em que a maioria das respostas variou entre “Muito Satisfeito” e “Satisfeito”.
- Software framework implementation for a robot that uses different development boardsPublication . Gomes, Pedro Miguel Francisco; Daniel, Helder Aniceto SousaA software framework is a concrete or conceptual platform where common code with generic functionality can be selectively specialized or overridden by developers or users. Frameworks take the form of libraries where a well-defined application program interface is reusable anywhere within the software under development. A user can extend the framework but not modify the code. The purpose of software framework is to simplify the development environment, allowing developers to dedicate their efforts to the project requirements, rather than dealing with the framework’s mundane, repetitive functions and libraries. A differential wheeled robot is a mobile robot whose movement is based on two separately driven wheels placed on either side of the robot body. It can thus change its direction by varying the relative rate of rotation of its wheels and hence does not require an additional steering motion. If both the wheels are driven in the same direction and speed, the robot will go in a straight line. If both wheels are turned with equal speed in opposite directions, the robot will rotate about the central point of the axis. Otherwise, depending on the speed of rotation and its direction, the center of rotation may fall anywhere on the line defined by the two contact points of the wheels. The objective of this thesis, is to create a software framework for a wheeled robot, where we can change its development board, without having to make many changes in the code that is used to control the robot. The composition of the robot is: a development board, that allows the control of any electronic devices, that are connected to it; some sensors to detect obstacles; two motors to move the robot; a motor driver to power and control the motors individually; a chassis to assemble the robot; and a battery to power all the electronic devices. The most important device of the robot is the development board, which allows the control of every single electronic device connected to it through a program. In this project we use three development boards, which are: Arduino UNO rev3, NodeMCU ESP8266 v1.0 and Raspberry Pi 3 Model B+. The programming language used to control the devices and the boards is the C++ programming language, because it can be used with all of them. Since all the boards have a different external/internal design, there are some issues that we need to fix with the help of external hardware. Other important devices are the sensors to detect objects, which are: the sensor HC-SR04, which uses ultrasonic waves; and, the sensor Sharp GP2Y0A41SK0F, which uses infrared light. The framework also covers two types of servo motors: one that can continuously rotate; and the other one that only rotates about half a circle. The servo motors can be used, for instance, to rotate a range sensor. Then we need two DC motors to move the vehicle. To power up these DC motors, which are controlled with a PWM signal, we need to connect them to a device called motor driver which is connected to a battery. Finally, to assemble the robot we just need to connect all the devices to the development board and attach them to the chassis. This software framework was created with the purpose of programmatically connect every device (any sensor, motor or other device) to the development board and allow a user to do minimal code changes when he has the need to change the development board. All the devices that the framework supports have a datasheet explaining their behavior and operation, so that it was possible to develop a library to operate and control the device. By joining all these libraries together we have the framework presented here. The experimental methodology, used in two case studies, will show the features and the limitations of the framework. The first case study shows that the changes the user needs to do when changing boards are minimal but because all the development boards are different, there are some things we can’t program without having to make the user of the framework, sacrifice his GPIO connection choices. The second case study, shows that because of how the development boards work internally, there are some things that aren’t possible to program to work like they were designed as the other development boards.