Questions tagged [proteus]

Proteus is a JSON layout inflater with data binding support for Android.

67 questions
0
votes
0 answers

How to store in ACSR and ADCSRA/B (AVR)

I've been trying to make a comparator in AVR using Proteus 8 with an Arduino ATMega 328P. I've been told that the comparison is practically made by the Arduino, so I just need to get the value from the location, but I haven't been able to access it.…
0
votes
1 answer

Controller received data whilst busy

I am trying to use interrupts in code vision for proteus. INT0 for increasing the counter value and INT1 for decreasing it. for that purpose I declared two funcions interrupt [EXT_INT0] void ext_int0_isr(void) and interrupt [EXT_INT1] void…
Benyamin
  • 1,008
  • 11
  • 18
0
votes
1 answer

Simulating PIC18F4520 Serial connection using Proteus

Intro Hy, I am working on a project which uses PIC18F4520 micro-controller to send data to my windows machine. In Windows, I am developing a python GUI using tkinter which will show the data after reading it through Serial port. The micro-controller…
abdulsamad
  • 158
  • 1
  • 10
0
votes
1 answer

How to control a Dual 7 Segment Display in Arduino + Protues

How can I display different numbers in a dual 7 segment with arduino and proteus? This is my setup: void setup() { pinMode(13,OUTPUT); //a pinMode(12,OUTPUT); //b pinMode(11,OUTPUT); //c pinMode(10,OUTPUT); //d pinMode(9,OUTPUT); //e …
paraJdox1
  • 805
  • 9
  • 23
0
votes
1 answer

Simulating PSoC 5LP

I am working on extracting strain gauge values mounted on my ATV (front suspension) with the help of a 20 bit ADC of PSoC 5LP. Before that, I would like to simulate it. So could you please suggest an appropriate simulator? I have tried it on proteus…
0
votes
1 answer

Detect peak value from real time data in an array

I have connected a sine wave of amplitude 3V with 1.5V shifted above the zero to 12-bit ADC channel by using dsPIC33FJ32MC204 controller and stored in an array. I want to detect the peak for each interval, so please give me any suggestion on it. I…
Mohan Khedkar
  • 33
  • 1
  • 6
0
votes
1 answer

Proteus I2C debugger sends additional byte with right shift, but ATmega32 gets left shifted one

ATmega32 should work as a slave for collecting data and GPIO control. I2C parcel should look like S (address) (register) ([value] )P But if I send P condition after register specifying, Proteus automatically sends additional byte that right shifted…
D0ct0rD
  • 11
  • 1
0
votes
0 answers

How to generate a .elf file with keil v5.30 to simulate in proteus

how are you?. I'm looking for how to generate a .elf file with keil v5.30 to simulate in Proteus and being able to se the source code while the simulation is running but I can't find nothing, I'm simulating a stm32f103c6 and I think the compiler is…
vram
  • 85
  • 8
0
votes
1 answer

Proteus 8.6 + C programming language - Display LED Buttons By Regular Buttons [SOLVED]

I got a simple hardware project with simple task: I have to turn on LED buttons with responsive regular buttons, using ATMega32 microcontroller. As an IDE we use Proteus 8.6 with C as programming language. I could realise turning on/off first…
Artemissio
  • 23
  • 5
0
votes
0 answers

0-999 Up - Down Counter with PIC16F877A

i have a problem about microprocessor C programming. Hardware picture is here! I have to write a code on the C compiler, counting the 10^0 digit on the D port, the 10^1 digit on the C port, and the 10^2 digit on the B port for the given hardware.…
0
votes
2 answers

How to upload my code or my .hex file to nodeMCU in proteus simulation?

I am using Proteus and trying to upload my code to nodeMCU. I have never used Proteus before and don't how to upload my code( or if it will take a .hex file like arduino). I have successfully compiled my code on ArduinoIDE. Please help.
nkhl
  • 140
  • 2
  • 13
0
votes
1 answer

STM32 Pin B0 works as input, but B1 doesn't

I am making a simple counter up/down using STM32F103C4, 2 buttons and a 7seg display, and the code is written in Keil uVision, from which the hex file is loaded into Proteus. The Counter Up part works perfectly, but the Counter Down part is just not…
Merisa
  • 1
  • 1
0
votes
1 answer

Is GridLayout supported by proteus? If not then what is an alternative?

I'm trying to use GridLayout in json like this { "type": "GridLayout", "android": "http://schemas.android.com/apk/res/android", "orientation": "horizontal", "layout_width": "match_parent", "layout_height": "match_parent", "columnCount":…
0
votes
0 answers

I want to proteus plugin in my android code.are there any latest proteus dependencies?how and where to find them?

Dependencies using groupId com.android.support and androidx.* can not be combined but found IdeMavenCoordinates{myGroupId='com.android.support', myArtifactId='coordinatorlayout', myVersion='28.0.0', myPacking='aar', myClassifier='null'} and…
0
votes
1 answer

Error while including the proteus library - "android.support.v7.appcompat.R$layout"

below is the app/build.gradle file dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation ('com.github.flipkart-incubator:proteus:5.0.0-rc12') { exclude group: 'com.android.support-v7' exclude…
Vamsi
  • 5,853
  • 6
  • 29
  • 36