C# :: How To Add A Timer Or Loop To Produce RSSI Value
Oct 24, 2014
I have a code which basically produces the RSSI value in a command prompt window once i run it but i want to add a function to it which would let the RSSI reproduce itself (once every 5 seconds or something) once its run without having to physically compile it every time.
using System;
using System.Collections.Generic;
using System.ComponentModel;
[Code].....
View 14 Replies
ADVERTISEMENT
Mar 20, 2013
I am trying to produce a image using GD graphics library. I can succesfully display my image, however I cant display this image along with a printf function too?
Code:
#include <stdio.h>
#include <gd.h>
int display_picture()
{
gdImagePtr gdImage = gdImageCreate( 50, 50 );
FILE *jpgFile = NULL;
[Code] ....
The picture displays but not hello.
View 5 Replies
View Related
Jan 30, 2015
I am new to C and am unfortunately racking my brain against this simple assignment. I believe the task is to produce a rectangle out of asterisks using while loops, yet I can only produce an "L" shape. We were given a code, with syntax errors included.We are to correct the errors and test.
Code:
#include <stdio.h>
/*Houghton, Micah*/
/*ET2560 - Cordova*/
/*Unit 5 Lab - Programming Loops*/
int main(void) {
int length, width;
int lcount, wcount;
[code]....
View 3 Replies
View Related
Aug 10, 2014
#include<conio.h>
#include<windows.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
#include <stdio.h>
void loading();
void gotoxy(int x, int y);
int color(int x);
void gotoxy(int x, int y);
[Code] ....
How to produce a loading bar with percent progress below.
View 1 Replies
View Related
Sep 2, 2014
void Log_In() {
system("cls");
gotoxy(30, 30);
time_t now;
time(&now);
[Code] .....
How to produce a password field with asterisk ****** .....
View 1 Replies
View Related
Aug 22, 2014
I wrote the following program shown below that produces a normally distributed random number several times, and then takes the average of them. The problem that I have been having though is that the output it has been producing is 0.0288385 despite the fact that I set the mean of the normal distribution to be 0.1. Why this output value would be so far off from 0.1 despite having averaged over such a large number of random numbers namely 10,000 of them? Also, how to randomly seed this random number generator such that it gives a different value each time its run perhaps by seeding it with the windows timer? Below is the program.
#include <iostream>
#include <random>
using namespace std;
int main() {
default_random_engine generator;
normal_distribution<double> distribution1(0.1,3.0);
double number1,sum,n;
[code].....
View 2 Replies
View Related
Sep 19, 2013
so i have a loop that will run x number of times and each time it will produce a prize which is a certain sum of money. I need to a way to sum all the money earned. I am thinking there should be a way to extract the prize one for each time the loop runs but i am not sure how to do that.
#include <iostream>
#include <string>
#include <cstdlib>
#include <cmath>
using namespace std;
int main() {
cout <<"Option A: Drop one chip into one slot" << endl;
[Code] .....
View 2 Replies
View Related
Feb 5, 2014
My professor wants me to write a program that will read from a dat file, and produce an output on the screen based on the file. I don't understand why I am getting this error. I suspect it has something to do with the number of characters I've told it to read.
#include<iostream>
#include<iomanip>
#include<fstream>
#include<assert.h>
#include<string>
using namespace std;
using namespace System;
struct TStudent {
string month[10];
[Code] .....
I noticed I had a 2 beside girl, after I removed it, it still didn't fix my problem.
View 8 Replies
View Related
Jan 26, 2013
Write a program to read in a sequence of examination mark from a text file named as input.txt and produce the mean, and standard deviation of the marks. Your program should also produce a bar chart for each grade where the range of mark is given as below.
GradeMarks Range
A80-100
B70-79.9
C50-69.9
D40-49.9
F0-39.9
Output the result to another text file named as output.txt.
View 3 Replies
View Related
Nov 18, 2014
Here is what i have so far:
#include<fstream>
#include<iostream>
#include<string>
[Code].....
I also need to do a loop that scan the count array and check if the element is bigger than the previous one.
View 1 Replies
View Related
Jan 24, 2014
#include<iostream.h>
#include<time.h>
#include<conio.h>
[Code].....
View 3 Replies
View Related
Apr 12, 2012
Im trying to make a reaction game. I have a grafic that comes up, and the timer starts and when i hit the grafic the timer stops. But my problem is that the Timer doesn't reset.
View 2 Replies
View Related
Feb 28, 2013
how to produce a period signal that lasts 0.100 ms that is 35% red and 65% green using a bi-colour LED and the timer module?
while(ReadTimer0() < (unsigned int)165)
Its using this: OpenTimer0(TIMER_INT_OFF & T0_SOURCE_INT & T0_16BIT & T0_PS_1_32);
So does that mean that the period signal is 165 * 32 * 4/32 = 660 = 66%? I really just need to know how to calculate the period signal to produce 35% red and 65% green..
View 1 Replies
View Related
May 17, 2013
I'm creating a game in which i.need player to.answer.my question within 10 seconds...
So I need a code for this timer... I don't want code to be paused by sleep or delay functions.. But I need that it waits.for 10 seconds.. and if user types answer in between.. it.reads it
And if player.doesn't answers it within 10 sec.. it displays a message
View 2 Replies
View Related
Apr 28, 2013
I need to set a timer but still have the program processing info. I have looked into using sleep but when using this all processing stops to my knowledge. I tried to use the settimer method but was having some issues since I am not using a dialog based interface.
View 1 Replies
View Related
Apr 4, 2015
I have some value in process memory (not my process). I have address of this value and want to execute function or smth else on changing this value. I think to use timers but I think they are too slow - low resolution(I read smth from 10 to 50 ms) and uses CPU too much. Can you offer me some other solution with not very much cpu usage but with checking variable value nearly 1 to 5 ms.
View 3 Replies
View Related
May 14, 2013
I am trying to create a five second timer that allows a value to be entered in that span of time. However, if a value is not entered within the five seconds, the timer ends and a value will no longer be able to be entered. I am trying to create a math test that has a five second time limit for equations to be answered.
View 4 Replies
View Related
Dec 25, 2013
My game runs in a while loop, as you can see in the code below. I need a timer, which won't stop this loop or freeze it, but it will wait, until timer is over and executes code without interfering with the while or for loop.
Code:
Code:
#include <iostream>
#include <iomanip>
#include <windows.h>
#include <ctime>
using namespace std;
char *map[25][25];
[Code] ....
View 1 Replies
View Related
Feb 25, 2013
What is the efficiency of the two assignments (line 1 and 2), i.e. (function calls, number of copies made, etc), also the Big O notation. I know there are function calls for retrieving the size of each string in order to produce a new buffer for the concatenated string...any difference between line 1 and 2 in terms of efficiency?
String s("Hello");
String t("There");
1. s = s + t;
2. s += t;
View 3 Replies
View Related
Jun 1, 2014
I want to add a timer to my mini quiz game and show how much time it took for the user to finish it .I want to learn how to do that in C language
NOTE: My program only has a splash screen Allegro
The files are attached :
A bitmap [URL] .....
(I couldn't attach because of the size is above 200 kb. Please save as a BMP file )
A text file
A CPP file
View 9 Replies
View Related
Nov 2, 2013
In an assignment where they were asked to write a simple alarm that went off every 12 hours. This seemed mildly interesting so I gave it a go. The alarm actually goes off every minute (to have it go off every hour, or every 12, or some other interval more cogs, shafts and pinions would need to be added to the mechanism).
Code:
/* A simple "stopwatch" that prints an alarm message every minute.
*
* 2-Nov-2013
*
*/
#include <stdio.h>
#include <stdbool.h>
#include <time.h>
[Code] .....
View 8 Replies
View Related
Jan 29, 2014
I have attached a circuit diagram below, which has been tested. Currently you have to manually push the switch to change the brightness of the bulbs. I want to program a chip to automate this.
Over 90 days the chip will output a high signal in replace of the switch every set period of time (say once every 1.5days). I can use any chip but the smaller the better!
View 1 Replies
View Related
Mar 21, 2013
I want to create a Hangman game with timer.. If the user cannot guess the word with in 1:30 min the game will stop and the word will be printed.
View 5 Replies
View Related
Dec 14, 2013
I want to add a countdown timer to my program so after specific time it go back to the main menu my program is something like vending machine....
View 1 Replies
View Related
Feb 2, 2013
I am making a timer but I want to have an input while it is running. Here is my code.
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <time.h>
using namespace std;
class timer {
[Code] .....
The bolded part is my attempt at trying to put in an input while the timer is running without having the other timer functions stop.
View 10 Replies
View Related
Aug 31, 2014
I usually use codeblocks until my professor gave me a project in which it was mandatory to use turbo c++ so how can I create the timer effect in turbo???
E.g. if i want to print 1 2 3 4.... in a gap of 2 seconds how will I do it in turbo c++?
View 12 Replies
View Related