Proteus is a JSON layout inflater with data binding support for Android.
Questions tagged [proteus]
67 questions
0
votes
0 answers
connecting to arduino atmega328p using usart , but the sender pin is acting as input
I'm trying to send a number in binary from one Arduino atmega328p to another using USART and then use the received data to display it on a seven segments display (7seg-mpx1-cc)
here is the code on the sender part:
.INCLUDE "m328pdef.inc"
.ORG…

MASTER KOURANI
- 31
- 4
0
votes
0 answers
WS2812b simulation with Stm32 in Proteus
I am an Embedded Engineer, working on the Simulation of WS2812B (12-RGB LEDs Strip) with Stm32F401RE in Proteus. But I can't simulate it. It's working with Arduino properly but not with Stm32.
Did I do something wrong? The frequency for the PWM is…

Waqas Ahmad
- 23
- 4
0
votes
0 answers
Rasberry Pi camera simulation
Good day, how can i simulate a rasberry pi camera. i want the camera to take a picture when a button is pressed and store the pictures in MySQL database
tried with the following code and displaying the picture on the tft screen but unfortunately…
0
votes
0 answers
Protues can't build file asm to HEX on Protues [Error make 2 ] process_begin: CreateProcess
The problem 2
I'm trying to install GCC to fix that but that's not a problem. Another way I try to add MinGW the PATH to the environment so it's not working. Install any version have the same problem.

Nguyen Tien Dat
- 1
- 1
0
votes
1 answer
Stack overflow in Proteus w/ PIC18F458
I'm using a PIC18F4580 module and I want to simulate an LED I wrote on MPLAB in Proteus but I keep getting the following:
[PIC18 STACK] PC=0x000E. Stack overflow is forcing device reset. [U1]
My code on MPLAB:
;Complete the schematic below showing…

user2253859
- 3
- 3
0
votes
0 answers
Create Overline Text in Proteus
Can I ask on how do I put an overline above my text in proteus? I have tried putting an overline using word but I get this error instead.enter image description here
This is what I wanted to be displayed at the wire
enter image description here

DyBancs
- 1
0
votes
0 answers
Memory overflow in atmega32
Currently, I am implementing a stop watch using atmega32 and six 7-segment.
#include
#include
#include
unsigned char sec1,sec2,min1,min2,hours1,hours2;
unsigned char finished_flag = 0;
int main(){
…

Ahmed Halim
- 27
- 5
0
votes
1 answer
Proteus show characters on LCD ( LM015L )
I've been trying to show some characters on LCD ( LM015L ) but I wasn't able to do it.
I've written the following code in c:
// LCD module connections
sbit LCD_RS at LATD0_bit;
sbit LCD_EN at LATD1_bit;
sbit LCD_D4 at LATD2_bit;
sbit LCD_D5 at…

t3nsa
- 680
- 6
- 21
0
votes
0 answers
how to make output port "1" when using AC input
I am using an AC input in my project. My input signals period which comes to port of PIC pin is 20ms.Its almost square waveform. I want to check this signal in 30ms time-interval continuously and make the output port "1". Because of using ac input,i…
0
votes
0 answers
is the any problem use fast_io(A) problem with PIC16F877?
When i define my code and run in proteus simulation, the leds which are connected to portA of PIC16F877 is not working. When i close the code like that "//use fast_io(A)" but i still use tris commands of port A, my leds are working which is…
0
votes
0 answers
Why It is stuck in loop? RX pin is not receiving data from Virtual Terminal?
This code is to simulate RFID reader working using AT89C51 in Proteus Software. Instead of RFID reader i am using Virtual Terminal for sending or scanning RFID, here in my case I am Typing ID in Virtual Terminal,
string 'a' stores input and…

Vedaraj
- 1
- 1
0
votes
0 answers
interface PIC16F877A with SIM900A GSM module
I've tried to interface PIC16F877A with SIM800l V2.2 in order to send sensor data from the microcontroller. While connecting SIM800L with proteus using TTL connection all the data are sent through GSM as we expected. But while we upload the code to…

SK Tarzan
- 1
- 1
0
votes
0 answers
What is wrong with this PIC16F877A HCSR04 example?
I am working on distance sensor with PIC16F877A.
I am using MPLAB IDE AND XC8 compiler.
My goal is to gradually turn on the right leds at certain distance levels, but the leds are blinking unstable. What am I doing wrong? distance/5
When it…

Electronx
- 103
- 4
0
votes
2 answers
STM32 External LED blink
I am trying to Blink external LED using STM32CubeIDE and Proteus
while (1)
{
HAL_GPIO_TogglePin(LED_GPIO_Port, LED_Pin);
HAL_Delay(100);
}
[)2
The LED doesn't blink

Sherif Beshr
- 23
- 1
- 8
0
votes
1 answer
Proteus always error at certain time (in this case 1.75 sec)
I recently using FreeRTOS for college project, but somehow my proteus always had this fatal error (every time its difference error but always fatal error, sometime violation module DSIM.dll, sometime other .dll(s)). At first I thought it has…

Alvin Arrazy
- 11
- 2