First time here? Check out the FAQ!

dgoadby's profile - activity

2023-10-07 16:22:07 -0500 received badge Famous Question (source)
2023-06-07 01:01:23 -0500 received badge Famous Question (source)
2023-06-07 01:01:23 -0500 received badge Notable Question (source)
2023-06-07 01:01:23 -0500 received badge Popular Question (source)
2019-03-16 20:51:27 -0500 received badge Notable Question (source)
2019-03-14 08:32:45 -0500 received badge Popular Question (source)
2019-03-07 07:05:42 -0500 marked best answer Remote session will not start as it is locked

I have been using WingIDE6 remotely with a Raspberry Pi very successfully for a few days now. I had a problem and had to kill WingIDE whilst debugging. Now, when I start-up the project I get a message that says the another project is still in use and the project is locked.

I tried the various options offered but nothing seems to work. I looked in various locations for something resembling lock flags but nothing obvious was found.

Can anyone tell me the way to sort this problem out?

David.

2019-03-07 07:04:03 -0500 received badge Student (source)
2019-03-07 07:04:01 -0500 marked best answer I2C problem with remote Raspberry pi

I am running WingIDE6.0 remotely connected to a Raspberry Pi. I can run a normal program no problem so I know it works. I have a program that imports smbus for I2C access. The program runs fine from the RPi console but,when I run it using Wing IDE I get an error which is:

IOError: [Errno 13] Permission denied.

Now, I can see that is it a permissions issue - but why? I have added the user to the i2c group but that didn't change things. The Wing IDE connection is SSH with keys (is no password) and it is the same user as the RPi login so there should not be a problem with permissions.The actual instruction that fails is:

 self._bus = smbus.SMBus(twi)

If this is a restriction for some reason then I'm stuck as I do a lot of native I/O on the RPi.

2019-03-07 07:04:00 -0500 received badge Self-Learner ( source )
2019-03-07 07:04:00 -0500 received badge Teacher ( source )
2017-03-11 18:08:00 -0500 asked a question Remote session will not start as it is locked

Remote session will not start as it is locked I have been using WingIDE6 remotely with a Raspberry Pi very successfully

2017-03-06 13:06:00 -0500 answered a question I2C problem with remote Raspberry pi

Ok, now were are sorted! And permissions is the problem. A quick fix is to change the permissions of /dev/i2c-1  or /dev

2017-03-05 22:05:00 -0500 answered a question I2C problem with remote Raspberry pi

Actually I'm not running as sudo. Earlier i2c implementations did require sudo or equivalent but I'm just running the pr

2017-03-05 20:41:00 -0500 asked a question I2C problem with remote Raspberry pi

I2C problem with remote Raspberry pi I am running WingIDE6.0 remotely connected to a Raspberry Pi. I can run a normal pr